All Downloads are FREE. Search and download functionalities are using the official Maven repository.

mapper.SysTaskJobMapper.xml Maven / Gradle / Ivy

The newest version!
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="system.mapper.SysTaskJobMapper">
  <!--
      @mgp-generator
      base/*Mapper由系统生成,不要修改,重新生成将被覆盖
      本同名文件用于撰写自已的SQL,重新生成不会覆盖
      两个文件在运行时将会自动合并
      参考: https://www.xiaobo.li/project/projects/jishi-mgp/wiki
    -->
  <select id="list" parameterType="system.entity.SysTaskJob" resultType="system.entity.SysTaskJob">
    SELECT
    <include refid="All_Column_List" />
    FROM sys_task_job
    <where>
       <include refid="whereAll" />
    </where>
    ORDER BY name ASC
  </select>
  <update id="updateByName" parameterType="system.entity.SysTaskJob">
    UPDATE sys_task_job
    <set>
      <include refid="setAll"></include>
    </set>
    WHERE name = #{name,jdbcType=VARCHAR}
  </update>
</mapper>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy