forked from github/dataease
196 lines
7.7 KiB
XML
196 lines
7.7 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.DatasetTableIncrementalConfigMapper">
|
|
<resultMap id="BaseResultMap" type="io.dataease.base.domain.DatasetTableIncrementalConfig">
|
|
<id column="id" jdbcType="VARCHAR" property="id" />
|
|
<result column="table_id" jdbcType="VARCHAR" property="tableId" />
|
|
<result column="incremental_delete" jdbcType="VARCHAR" property="incrementalDelete" />
|
|
<result column="incremental_add" jdbcType="VARCHAR" property="incrementalAdd" />
|
|
</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, incremental_delete, incremental_add
|
|
</sql>
|
|
<select id="selectByExample" parameterType="io.dataease.base.domain.DatasetTableIncrementalConfigExample" resultMap="BaseResultMap">
|
|
select
|
|
<if test="distinct">
|
|
distinct
|
|
</if>
|
|
<include refid="Base_Column_List" />
|
|
from dataset_table_incremental_config
|
|
<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="BaseResultMap">
|
|
select
|
|
<include refid="Base_Column_List" />
|
|
from dataset_table_incremental_config
|
|
where id = #{id,jdbcType=VARCHAR}
|
|
</select>
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
|
|
delete from dataset_table_incremental_config
|
|
where id = #{id,jdbcType=VARCHAR}
|
|
</delete>
|
|
<delete id="deleteByExample" parameterType="io.dataease.base.domain.DatasetTableIncrementalConfigExample">
|
|
delete from dataset_table_incremental_config
|
|
<if test="_parameter != null">
|
|
<include refid="Example_Where_Clause" />
|
|
</if>
|
|
</delete>
|
|
<insert id="insert" parameterType="io.dataease.base.domain.DatasetTableIncrementalConfig">
|
|
insert into dataset_table_incremental_config (id, table_id, incremental_delete,
|
|
incremental_add)
|
|
values (#{id,jdbcType=VARCHAR}, #{tableId,jdbcType=VARCHAR}, #{incrementalDelete,jdbcType=VARCHAR},
|
|
#{incrementalAdd,jdbcType=VARCHAR})
|
|
</insert>
|
|
<insert id="insertSelective" parameterType="io.dataease.base.domain.DatasetTableIncrementalConfig">
|
|
insert into dataset_table_incremental_config
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
<if test="id != null">
|
|
id,
|
|
</if>
|
|
<if test="tableId != null">
|
|
table_id,
|
|
</if>
|
|
<if test="incrementalDelete != null">
|
|
incremental_delete,
|
|
</if>
|
|
<if test="incrementalAdd != null">
|
|
incremental_add,
|
|
</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="incrementalDelete != null">
|
|
#{incrementalDelete,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="incrementalAdd != null">
|
|
#{incrementalAdd,jdbcType=VARCHAR},
|
|
</if>
|
|
</trim>
|
|
</insert>
|
|
<select id="countByExample" parameterType="io.dataease.base.domain.DatasetTableIncrementalConfigExample" resultType="java.lang.Long">
|
|
select count(*) from dataset_table_incremental_config
|
|
<if test="_parameter != null">
|
|
<include refid="Example_Where_Clause" />
|
|
</if>
|
|
</select>
|
|
<update id="updateByExampleSelective" parameterType="map">
|
|
update dataset_table_incremental_config
|
|
<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.incrementalDelete != null">
|
|
incremental_delete = #{record.incrementalDelete,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="record.incrementalAdd != null">
|
|
incremental_add = #{record.incrementalAdd,jdbcType=VARCHAR},
|
|
</if>
|
|
</set>
|
|
<if test="_parameter != null">
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
</if>
|
|
</update>
|
|
<update id="updateByExample" parameterType="map">
|
|
update dataset_table_incremental_config
|
|
set id = #{record.id,jdbcType=VARCHAR},
|
|
table_id = #{record.tableId,jdbcType=VARCHAR},
|
|
incremental_delete = #{record.incrementalDelete,jdbcType=VARCHAR},
|
|
incremental_add = #{record.incrementalAdd,jdbcType=VARCHAR}
|
|
<if test="_parameter != null">
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
</if>
|
|
</update>
|
|
<update id="updateByPrimaryKeySelective" parameterType="io.dataease.base.domain.DatasetTableIncrementalConfig">
|
|
update dataset_table_incremental_config
|
|
<set>
|
|
<if test="tableId != null">
|
|
table_id = #{tableId,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="incrementalDelete != null">
|
|
incremental_delete = #{incrementalDelete,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="incrementalAdd != null">
|
|
incremental_add = #{incrementalAdd,jdbcType=VARCHAR},
|
|
</if>
|
|
</set>
|
|
where id = #{id,jdbcType=VARCHAR}
|
|
</update>
|
|
<update id="updateByPrimaryKey" parameterType="io.dataease.base.domain.DatasetTableIncrementalConfig">
|
|
update dataset_table_incremental_config
|
|
set table_id = #{tableId,jdbcType=VARCHAR},
|
|
incremental_delete = #{incrementalDelete,jdbcType=VARCHAR},
|
|
incremental_add = #{incrementalAdd,jdbcType=VARCHAR}
|
|
where id = #{id,jdbcType=VARCHAR}
|
|
</update>
|
|
</mapper> |