2021-02-24 17:14:37 +08:00
|
|
|
<?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.DatasetTableFieldMapper">
|
|
|
|
<resultMap id="BaseResultMap" type="io.dataease.base.domain.DatasetTableField">
|
|
|
|
<id column="id" jdbcType="VARCHAR" property="id" />
|
|
|
|
<result column="table_id" jdbcType="VARCHAR" property="tableId" />
|
|
|
|
<result column="origin_name" jdbcType="VARCHAR" property="originName" />
|
|
|
|
<result column="name" jdbcType="VARCHAR" property="name" />
|
|
|
|
<result column="type" jdbcType="VARCHAR" property="type" />
|
|
|
|
<result column="checked" jdbcType="BIT" property="checked" />
|
|
|
|
<result column="column_index" jdbcType="INTEGER" property="columnIndex" />
|
|
|
|
<result column="last_sync_time" jdbcType="BIGINT" property="lastSyncTime" />
|
2021-02-25 18:15:10 +08:00
|
|
|
<result column="de_type" jdbcType="INTEGER" property="deType" />
|
2021-02-24 17:14:37 +08:00
|
|
|
</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">
|
2021-02-25 18:15:10 +08:00
|
|
|
id, table_id, origin_name, `name`, `type`, `checked`, column_index, last_sync_time,
|
|
|
|
de_type
|
2021-02-24 17:14:37 +08:00
|
|
|
</sql>
|
|
|
|
<select id="selectByExample" parameterType="io.dataease.base.domain.DatasetTableFieldExample" resultMap="BaseResultMap">
|
|
|
|
select
|
|
|
|
<if test="distinct">
|
|
|
|
distinct
|
|
|
|
</if>
|
|
|
|
<include refid="Base_Column_List" />
|
|
|
|
from dataset_table_field
|
|
|
|
<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_field
|
|
|
|
where id = #{id,jdbcType=VARCHAR}
|
|
|
|
</select>
|
|
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
|
|
|
|
delete from dataset_table_field
|
|
|
|
where id = #{id,jdbcType=VARCHAR}
|
|
|
|
</delete>
|
|
|
|
<delete id="deleteByExample" parameterType="io.dataease.base.domain.DatasetTableFieldExample">
|
|
|
|
delete from dataset_table_field
|
|
|
|
<if test="_parameter != null">
|
|
|
|
<include refid="Example_Where_Clause" />
|
|
|
|
</if>
|
|
|
|
</delete>
|
|
|
|
<insert id="insert" parameterType="io.dataease.base.domain.DatasetTableField">
|
|
|
|
insert into dataset_table_field (id, table_id, origin_name,
|
|
|
|
`name`, `type`, `checked`, column_index,
|
2021-02-25 18:15:10 +08:00
|
|
|
last_sync_time, de_type)
|
2021-02-24 17:14:37 +08:00
|
|
|
values (#{id,jdbcType=VARCHAR}, #{tableId,jdbcType=VARCHAR}, #{originName,jdbcType=VARCHAR},
|
|
|
|
#{name,jdbcType=VARCHAR}, #{type,jdbcType=VARCHAR}, #{checked,jdbcType=BIT}, #{columnIndex,jdbcType=INTEGER},
|
2021-02-25 18:15:10 +08:00
|
|
|
#{lastSyncTime,jdbcType=BIGINT}, #{deType,jdbcType=INTEGER})
|
2021-02-24 17:14:37 +08:00
|
|
|
</insert>
|
|
|
|
<insert id="insertSelective" parameterType="io.dataease.base.domain.DatasetTableField">
|
|
|
|
insert into dataset_table_field
|
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
|
<if test="id != null">
|
|
|
|
id,
|
|
|
|
</if>
|
|
|
|
<if test="tableId != null">
|
|
|
|
table_id,
|
|
|
|
</if>
|
|
|
|
<if test="originName != null">
|
|
|
|
origin_name,
|
|
|
|
</if>
|
|
|
|
<if test="name != null">
|
|
|
|
`name`,
|
|
|
|
</if>
|
|
|
|
<if test="type != null">
|
|
|
|
`type`,
|
|
|
|
</if>
|
|
|
|
<if test="checked != null">
|
|
|
|
`checked`,
|
|
|
|
</if>
|
|
|
|
<if test="columnIndex != null">
|
|
|
|
column_index,
|
|
|
|
</if>
|
|
|
|
<if test="lastSyncTime != null">
|
|
|
|
last_sync_time,
|
|
|
|
</if>
|
2021-02-25 18:15:10 +08:00
|
|
|
<if test="deType != null">
|
|
|
|
de_type,
|
|
|
|
</if>
|
2021-02-24 17:14:37 +08:00
|
|
|
</trim>
|
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
<if test="id != null">
|
|
|
|
#{id,jdbcType=VARCHAR},
|
|
|
|
</if>
|
|
|
|
<if test="tableId != null">
|
|
|
|
#{tableId,jdbcType=VARCHAR},
|
|
|
|
</if>
|
|
|
|
<if test="originName != null">
|
|
|
|
#{originName,jdbcType=VARCHAR},
|
|
|
|
</if>
|
|
|
|
<if test="name != null">
|
|
|
|
#{name,jdbcType=VARCHAR},
|
|
|
|
</if>
|
|
|
|
<if test="type != null">
|
|
|
|
#{type,jdbcType=VARCHAR},
|
|
|
|
</if>
|
|
|
|
<if test="checked != null">
|
|
|
|
#{checked,jdbcType=BIT},
|
|
|
|
</if>
|
|
|
|
<if test="columnIndex != null">
|
|
|
|
#{columnIndex,jdbcType=INTEGER},
|
|
|
|
</if>
|
|
|
|
<if test="lastSyncTime != null">
|
|
|
|
#{lastSyncTime,jdbcType=BIGINT},
|
|
|
|
</if>
|
2021-02-25 18:15:10 +08:00
|
|
|
<if test="deType != null">
|
|
|
|
#{deType,jdbcType=INTEGER},
|
|
|
|
</if>
|
2021-02-24 17:14:37 +08:00
|
|
|
</trim>
|
|
|
|
</insert>
|
|
|
|
<select id="countByExample" parameterType="io.dataease.base.domain.DatasetTableFieldExample" resultType="java.lang.Long">
|
|
|
|
select count(*) from dataset_table_field
|
|
|
|
<if test="_parameter != null">
|
|
|
|
<include refid="Example_Where_Clause" />
|
|
|
|
</if>
|
|
|
|
</select>
|
|
|
|
<update id="updateByExampleSelective" parameterType="map">
|
|
|
|
update dataset_table_field
|
|
|
|
<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.originName != null">
|
|
|
|
origin_name = #{record.originName,jdbcType=VARCHAR},
|
|
|
|
</if>
|
|
|
|
<if test="record.name != null">
|
|
|
|
`name` = #{record.name,jdbcType=VARCHAR},
|
|
|
|
</if>
|
|
|
|
<if test="record.type != null">
|
|
|
|
`type` = #{record.type,jdbcType=VARCHAR},
|
|
|
|
</if>
|
|
|
|
<if test="record.checked != null">
|
|
|
|
`checked` = #{record.checked,jdbcType=BIT},
|
|
|
|
</if>
|
|
|
|
<if test="record.columnIndex != null">
|
|
|
|
column_index = #{record.columnIndex,jdbcType=INTEGER},
|
|
|
|
</if>
|
|
|
|
<if test="record.lastSyncTime != null">
|
|
|
|
last_sync_time = #{record.lastSyncTime,jdbcType=BIGINT},
|
|
|
|
</if>
|
2021-02-25 18:15:10 +08:00
|
|
|
<if test="record.deType != null">
|
|
|
|
de_type = #{record.deType,jdbcType=INTEGER},
|
|
|
|
</if>
|
2021-02-24 17:14:37 +08:00
|
|
|
</set>
|
|
|
|
<if test="_parameter != null">
|
|
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
|
|
</if>
|
|
|
|
</update>
|
|
|
|
<update id="updateByExample" parameterType="map">
|
|
|
|
update dataset_table_field
|
|
|
|
set id = #{record.id,jdbcType=VARCHAR},
|
|
|
|
table_id = #{record.tableId,jdbcType=VARCHAR},
|
|
|
|
origin_name = #{record.originName,jdbcType=VARCHAR},
|
|
|
|
`name` = #{record.name,jdbcType=VARCHAR},
|
|
|
|
`type` = #{record.type,jdbcType=VARCHAR},
|
|
|
|
`checked` = #{record.checked,jdbcType=BIT},
|
|
|
|
column_index = #{record.columnIndex,jdbcType=INTEGER},
|
2021-02-25 18:15:10 +08:00
|
|
|
last_sync_time = #{record.lastSyncTime,jdbcType=BIGINT},
|
|
|
|
de_type = #{record.deType,jdbcType=INTEGER}
|
2021-02-24 17:14:37 +08:00
|
|
|
<if test="_parameter != null">
|
|
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
|
|
</if>
|
|
|
|
</update>
|
|
|
|
<update id="updateByPrimaryKeySelective" parameterType="io.dataease.base.domain.DatasetTableField">
|
|
|
|
update dataset_table_field
|
|
|
|
<set>
|
|
|
|
<if test="tableId != null">
|
|
|
|
table_id = #{tableId,jdbcType=VARCHAR},
|
|
|
|
</if>
|
|
|
|
<if test="originName != null">
|
|
|
|
origin_name = #{originName,jdbcType=VARCHAR},
|
|
|
|
</if>
|
|
|
|
<if test="name != null">
|
|
|
|
`name` = #{name,jdbcType=VARCHAR},
|
|
|
|
</if>
|
|
|
|
<if test="type != null">
|
|
|
|
`type` = #{type,jdbcType=VARCHAR},
|
|
|
|
</if>
|
|
|
|
<if test="checked != null">
|
|
|
|
`checked` = #{checked,jdbcType=BIT},
|
|
|
|
</if>
|
|
|
|
<if test="columnIndex != null">
|
|
|
|
column_index = #{columnIndex,jdbcType=INTEGER},
|
|
|
|
</if>
|
|
|
|
<if test="lastSyncTime != null">
|
|
|
|
last_sync_time = #{lastSyncTime,jdbcType=BIGINT},
|
|
|
|
</if>
|
2021-02-25 18:15:10 +08:00
|
|
|
<if test="deType != null">
|
|
|
|
de_type = #{deType,jdbcType=INTEGER},
|
|
|
|
</if>
|
2021-02-24 17:14:37 +08:00
|
|
|
</set>
|
|
|
|
where id = #{id,jdbcType=VARCHAR}
|
|
|
|
</update>
|
|
|
|
<update id="updateByPrimaryKey" parameterType="io.dataease.base.domain.DatasetTableField">
|
|
|
|
update dataset_table_field
|
|
|
|
set table_id = #{tableId,jdbcType=VARCHAR},
|
|
|
|
origin_name = #{originName,jdbcType=VARCHAR},
|
|
|
|
`name` = #{name,jdbcType=VARCHAR},
|
|
|
|
`type` = #{type,jdbcType=VARCHAR},
|
|
|
|
`checked` = #{checked,jdbcType=BIT},
|
|
|
|
column_index = #{columnIndex,jdbcType=INTEGER},
|
2021-02-25 18:15:10 +08:00
|
|
|
last_sync_time = #{lastSyncTime,jdbcType=BIGINT},
|
|
|
|
de_type = #{deType,jdbcType=INTEGER}
|
2021-02-24 17:14:37 +08:00
|
|
|
where id = #{id,jdbcType=VARCHAR}
|
|
|
|
</update>
|
|
|
|
</mapper>
|