304 lines
11 KiB
XML
304 lines
11 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="io.dataease.base.mapper.DatasetTableTaskLogMapper">
|
|
<resultMap id="BaseResultMap" type="io.dataease.base.domain.DatasetTableTaskLog">
|
|
<id column="id" jdbcType="VARCHAR" property="id" />
|
|
<result column="table_id" jdbcType="VARCHAR" property="tableId" />
|
|
<result column="task_id" jdbcType="VARCHAR" property="taskId" />
|
|
<result column="start_time" jdbcType="BIGINT" property="startTime" />
|
|
<result column="end_time" jdbcType="BIGINT" property="endTime" />
|
|
<result column="status" jdbcType="VARCHAR" property="status" />
|
|
<result column="create_time" jdbcType="BIGINT" property="createTime" />
|
|
</resultMap>
|
|
<resultMap extends="BaseResultMap" id="ResultMapWithBLOBs" type="io.dataease.base.domain.DatasetTableTaskLog">
|
|
<result column="info" jdbcType="LONGVARCHAR" property="info" />
|
|
</resultMap>
|
|
<sql id="Example_Where_Clause">
|
|
<where>
|
|
<foreach collection="oredCriteria" item="criteria" separator="or">
|
|
<if test="criteria.valid">
|
|
<trim prefix="(" prefixOverrides="and" suffix=")">
|
|
<foreach collection="criteria.criteria" item="criterion">
|
|
<choose>
|
|
<when test="criterion.noValue">
|
|
and ${criterion.condition}
|
|
</when>
|
|
<when test="criterion.singleValue">
|
|
and ${criterion.condition} #{criterion.value}
|
|
</when>
|
|
<when test="criterion.betweenValue">
|
|
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
|
|
</when>
|
|
<when test="criterion.listValue">
|
|
and ${criterion.condition}
|
|
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
|
|
#{listItem}
|
|
</foreach>
|
|
</when>
|
|
</choose>
|
|
</foreach>
|
|
</trim>
|
|
</if>
|
|
</foreach>
|
|
</where>
|
|
</sql>
|
|
<sql id="Update_By_Example_Where_Clause">
|
|
<where>
|
|
<foreach collection="example.oredCriteria" item="criteria" separator="or">
|
|
<if test="criteria.valid">
|
|
<trim prefix="(" prefixOverrides="and" suffix=")">
|
|
<foreach collection="criteria.criteria" item="criterion">
|
|
<choose>
|
|
<when test="criterion.noValue">
|
|
and ${criterion.condition}
|
|
</when>
|
|
<when test="criterion.singleValue">
|
|
and ${criterion.condition} #{criterion.value}
|
|
</when>
|
|
<when test="criterion.betweenValue">
|
|
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
|
|
</when>
|
|
<when test="criterion.listValue">
|
|
and ${criterion.condition}
|
|
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
|
|
#{listItem}
|
|
</foreach>
|
|
</when>
|
|
</choose>
|
|
</foreach>
|
|
</trim>
|
|
</if>
|
|
</foreach>
|
|
</where>
|
|
</sql>
|
|
<sql id="Base_Column_List">
|
|
id, table_id, task_id, start_time, end_time, `status`, create_time
|
|
</sql>
|
|
<sql id="Blob_Column_List">
|
|
info
|
|
</sql>
|
|
<select id="selectByExampleWithBLOBs" parameterType="io.dataease.base.domain.DatasetTableTaskLogExample" resultMap="ResultMapWithBLOBs">
|
|
select
|
|
<if test="distinct">
|
|
distinct
|
|
</if>
|
|
<include refid="Base_Column_List" />
|
|
,
|
|
<include refid="Blob_Column_List" />
|
|
from dataset_table_task_log
|
|
<if test="_parameter != null">
|
|
<include refid="Example_Where_Clause" />
|
|
</if>
|
|
<if test="orderByClause != null">
|
|
order by ${orderByClause}
|
|
</if>
|
|
</select>
|
|
<select id="selectByExample" parameterType="io.dataease.base.domain.DatasetTableTaskLogExample" resultMap="BaseResultMap">
|
|
select
|
|
<if test="distinct">
|
|
distinct
|
|
</if>
|
|
<include refid="Base_Column_List" />
|
|
from dataset_table_task_log
|
|
<if test="_parameter != null">
|
|
<include refid="Example_Where_Clause" />
|
|
</if>
|
|
<if test="orderByClause != null">
|
|
order by ${orderByClause}
|
|
</if>
|
|
</select>
|
|
<select id="selectByPrimaryKey" parameterType="java.lang.String" resultMap="ResultMapWithBLOBs">
|
|
select
|
|
<include refid="Base_Column_List" />
|
|
,
|
|
<include refid="Blob_Column_List" />
|
|
from dataset_table_task_log
|
|
where id = #{id,jdbcType=VARCHAR}
|
|
</select>
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
|
|
delete from dataset_table_task_log
|
|
where id = #{id,jdbcType=VARCHAR}
|
|
</delete>
|
|
<delete id="deleteByExample" parameterType="io.dataease.base.domain.DatasetTableTaskLogExample">
|
|
delete from dataset_table_task_log
|
|
<if test="_parameter != null">
|
|
<include refid="Example_Where_Clause" />
|
|
</if>
|
|
</delete>
|
|
<insert id="insert" parameterType="io.dataease.base.domain.DatasetTableTaskLog">
|
|
insert into dataset_table_task_log (id, table_id, task_id,
|
|
start_time, end_time, `status`,
|
|
create_time, info)
|
|
values (#{id,jdbcType=VARCHAR}, #{tableId,jdbcType=VARCHAR}, #{taskId,jdbcType=VARCHAR},
|
|
#{startTime,jdbcType=BIGINT}, #{endTime,jdbcType=BIGINT}, #{status,jdbcType=VARCHAR},
|
|
#{createTime,jdbcType=BIGINT}, #{info,jdbcType=LONGVARCHAR})
|
|
</insert>
|
|
<insert id="insertSelective" parameterType="io.dataease.base.domain.DatasetTableTaskLog">
|
|
insert into dataset_table_task_log
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
<if test="id != null">
|
|
id,
|
|
</if>
|
|
<if test="tableId != null">
|
|
table_id,
|
|
</if>
|
|
<if test="taskId != null">
|
|
task_id,
|
|
</if>
|
|
<if test="startTime != null">
|
|
start_time,
|
|
</if>
|
|
<if test="endTime != null">
|
|
end_time,
|
|
</if>
|
|
<if test="status != null">
|
|
`status`,
|
|
</if>
|
|
<if test="createTime != null">
|
|
create_time,
|
|
</if>
|
|
<if test="info != null">
|
|
info,
|
|
</if>
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<if test="id != null">
|
|
#{id,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="tableId != null">
|
|
#{tableId,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="taskId != null">
|
|
#{taskId,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="startTime != null">
|
|
#{startTime,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="endTime != null">
|
|
#{endTime,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="status != null">
|
|
#{status,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="createTime != null">
|
|
#{createTime,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="info != null">
|
|
#{info,jdbcType=LONGVARCHAR},
|
|
</if>
|
|
</trim>
|
|
</insert>
|
|
<select id="countByExample" parameterType="io.dataease.base.domain.DatasetTableTaskLogExample" resultType="java.lang.Long">
|
|
select count(*) from dataset_table_task_log
|
|
<if test="_parameter != null">
|
|
<include refid="Example_Where_Clause" />
|
|
</if>
|
|
</select>
|
|
<update id="updateByExampleSelective" parameterType="map">
|
|
update dataset_table_task_log
|
|
<set>
|
|
<if test="record.id != null">
|
|
id = #{record.id,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.tableId != null">
|
|
table_id = #{record.tableId,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.taskId != null">
|
|
task_id = #{record.taskId,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.startTime != null">
|
|
start_time = #{record.startTime,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="record.endTime != null">
|
|
end_time = #{record.endTime,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="record.status != null">
|
|
`status` = #{record.status,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.createTime != null">
|
|
create_time = #{record.createTime,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="record.info != null">
|
|
info = #{record.info,jdbcType=LONGVARCHAR},
|
|
</if>
|
|
</set>
|
|
<if test="_parameter != null">
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
</if>
|
|
</update>
|
|
<update id="updateByExampleWithBLOBs" parameterType="map">
|
|
update dataset_table_task_log
|
|
set id = #{record.id,jdbcType=VARCHAR},
|
|
table_id = #{record.tableId,jdbcType=VARCHAR},
|
|
task_id = #{record.taskId,jdbcType=VARCHAR},
|
|
start_time = #{record.startTime,jdbcType=BIGINT},
|
|
end_time = #{record.endTime,jdbcType=BIGINT},
|
|
`status` = #{record.status,jdbcType=VARCHAR},
|
|
create_time = #{record.createTime,jdbcType=BIGINT},
|
|
info = #{record.info,jdbcType=LONGVARCHAR}
|
|
<if test="_parameter != null">
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
</if>
|
|
</update>
|
|
<update id="updateByExample" parameterType="map">
|
|
update dataset_table_task_log
|
|
set id = #{record.id,jdbcType=VARCHAR},
|
|
table_id = #{record.tableId,jdbcType=VARCHAR},
|
|
task_id = #{record.taskId,jdbcType=VARCHAR},
|
|
start_time = #{record.startTime,jdbcType=BIGINT},
|
|
end_time = #{record.endTime,jdbcType=BIGINT},
|
|
`status` = #{record.status,jdbcType=VARCHAR},
|
|
create_time = #{record.createTime,jdbcType=BIGINT}
|
|
<if test="_parameter != null">
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
</if>
|
|
</update>
|
|
<update id="updateByPrimaryKeySelective" parameterType="io.dataease.base.domain.DatasetTableTaskLog">
|
|
update dataset_table_task_log
|
|
<set>
|
|
<if test="tableId != null">
|
|
table_id = #{tableId,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="taskId != null">
|
|
task_id = #{taskId,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="startTime != null">
|
|
start_time = #{startTime,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="endTime != null">
|
|
end_time = #{endTime,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="status != null">
|
|
`status` = #{status,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="createTime != null">
|
|
create_time = #{createTime,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="info != null">
|
|
info = #{info,jdbcType=LONGVARCHAR},
|
|
</if>
|
|
</set>
|
|
where id = #{id,jdbcType=VARCHAR}
|
|
</update>
|
|
<update id="updateByPrimaryKeyWithBLOBs" parameterType="io.dataease.base.domain.DatasetTableTaskLog">
|
|
update dataset_table_task_log
|
|
set table_id = #{tableId,jdbcType=VARCHAR},
|
|
task_id = #{taskId,jdbcType=VARCHAR},
|
|
start_time = #{startTime,jdbcType=BIGINT},
|
|
end_time = #{endTime,jdbcType=BIGINT},
|
|
`status` = #{status,jdbcType=VARCHAR},
|
|
create_time = #{createTime,jdbcType=BIGINT},
|
|
info = #{info,jdbcType=LONGVARCHAR}
|
|
where id = #{id,jdbcType=VARCHAR}
|
|
</update>
|
|
<update id="updateByPrimaryKey" parameterType="io.dataease.base.domain.DatasetTableTaskLog">
|
|
update dataset_table_task_log
|
|
set table_id = #{tableId,jdbcType=VARCHAR},
|
|
task_id = #{taskId,jdbcType=VARCHAR},
|
|
start_time = #{startTime,jdbcType=BIGINT},
|
|
end_time = #{endTime,jdbcType=BIGINT},
|
|
`status` = #{status,jdbcType=VARCHAR},
|
|
create_time = #{createTime,jdbcType=BIGINT}
|
|
where id = #{id,jdbcType=VARCHAR}
|
|
</update>
|
|
</mapper> |