112 lines
5.4 KiB
XML
112 lines
5.4 KiB
XML
<?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="com.test.test.mapper.TestTaskMapper">
|
|
|
|
<resultMap type="TestTask" id="TestTaskResult">
|
|
<result property="id" column="id" />
|
|
<result property="name" column="name" />
|
|
<result property="groupId" column="group_id" />
|
|
<result property="projectId" column="project_id" />
|
|
<result property="crontab" column="crontab" />
|
|
<result property="status" column="status" />
|
|
<result property="retry" column="retry" />
|
|
<result property="retryCount" column="retry_count" />
|
|
<result property="async" column="async" />
|
|
<result property="delFlag" column="del_flag" />
|
|
<result property="createBy" column="create_by" />
|
|
<result property="createTime" column="create_time" />
|
|
<result property="updateBy" column="update_by" />
|
|
<result property="updateTime" column="update_time" />
|
|
</resultMap>
|
|
|
|
<sql id="selectTestTaskVo">
|
|
select id, name, group_id, project_id, crontab, status, retry, retry_count, async, del_flag, create_by, create_time, update_by, update_time from test_task
|
|
</sql>
|
|
|
|
<select id="selectTestTaskList" parameterType="TestTask" resultMap="TestTaskResult">
|
|
<include refid="selectTestTaskVo"/>
|
|
<where>
|
|
<if test="name != null and name != ''"> and name like concat('%', #{name}, '%')</if>
|
|
<if test="groupId != null "> and group_id = #{groupId}</if>
|
|
<if test="projectId != null "> and project_id = #{projectId}</if>
|
|
<if test="crontab != null and crontab != ''"> and crontab = #{crontab}</if>
|
|
<if test="status != null "> and status = #{status}</if>
|
|
<if test="retry != null "> and retry = #{retry}</if>
|
|
<if test="retryCount != null "> and retry_count = #{retryCount}</if>
|
|
<if test="async != null "> and async = #{async}</if>
|
|
</where>
|
|
</select>
|
|
|
|
<select id="selectTestTaskById" parameterType="Long" resultMap="TestTaskResult">
|
|
<include refid="selectTestTaskVo"/>
|
|
where id = #{id}
|
|
</select>
|
|
|
|
<insert id="insertTestTask" parameterType="TestTask" useGeneratedKeys="true" keyProperty="id">
|
|
insert into test_task
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
<if test="name != null">name,</if>
|
|
<if test="groupId != null">group_id,</if>
|
|
<if test="projectId != null">project_id,</if>
|
|
<if test="crontab != null">crontab,</if>
|
|
<if test="status != null">status,</if>
|
|
<if test="retry != null">retry,</if>
|
|
<if test="retryCount != null">retry_count,</if>
|
|
<if test="async != null">async,</if>
|
|
<if test="delFlag != null">del_flag,</if>
|
|
<if test="createBy != null">create_by,</if>
|
|
<if test="createTime != null">create_time,</if>
|
|
<if test="updateBy != null">update_by,</if>
|
|
<if test="updateTime != null">update_time,</if>
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<if test="name != null">#{name},</if>
|
|
<if test="groupId != null">#{groupId},</if>
|
|
<if test="projectId != null">#{projectId},</if>
|
|
<if test="crontab != null">#{crontab},</if>
|
|
<if test="status != null">#{status},</if>
|
|
<if test="retry != null">#{retry},</if>
|
|
<if test="retryCount != null">#{retryCount},</if>
|
|
<if test="async != null">#{async},</if>
|
|
<if test="delFlag != null">#{delFlag},</if>
|
|
<if test="createBy != null">#{createBy},</if>
|
|
<if test="createTime != null">#{createTime},</if>
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
<if test="updateTime != null">#{updateTime},</if>
|
|
</trim>
|
|
</insert>
|
|
|
|
<update id="updateTestTask" parameterType="TestTask">
|
|
update test_task
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
<if test="name != null">name = #{name},</if>
|
|
<if test="groupId != null">group_id = #{groupId},</if>
|
|
<if test="projectId != null">project_id = #{projectId},</if>
|
|
<if test="crontab != null">crontab = #{crontab},</if>
|
|
<if test="status != null">status = #{status},</if>
|
|
<if test="retry != null">retry = #{retry},</if>
|
|
<if test="retryCount != null">retry_count = #{retryCount},</if>
|
|
<if test="async != null">async = #{async},</if>
|
|
<if test="delFlag != null">del_flag = #{delFlag},</if>
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|
|
<if test="updateTime != null">update_time = #{updateTime},</if>
|
|
</trim>
|
|
where id = #{id}
|
|
</update>
|
|
|
|
<delete id="deleteTestTaskById" parameterType="Long">
|
|
delete from test_task where id = #{id}
|
|
</delete>
|
|
|
|
<delete id="deleteTestTaskByIds" parameterType="String">
|
|
delete from test_task where id in
|
|
<foreach item="id" collection="array" open="(" separator="," close=")">
|
|
#{id}
|
|
</foreach>
|
|
</delete>
|
|
</mapper>
|