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" />
|
2021-05-07 16:01:04 +08:00
|
|
|
<result column="dataease_name" jdbcType="VARCHAR" property="dataeaseName" />
|
2021-07-08 13:50:22 +08:00
|
|
|
<result column="group_type" jdbcType="VARCHAR" property="groupType" />
|
2021-02-24 17:14:37 +08:00
|
|
|
<result column="type" jdbcType="VARCHAR" property="type" />
|
2021-04-27 17:32:26 +08:00
|
|
|
<result column="size" jdbcType="INTEGER" property="size" />
|
|
|
|
<result column="de_type" jdbcType="INTEGER" property="deType" />
|
2021-07-08 13:50:22 +08:00
|
|
|
<result column="de_type_format" jdbcType="INTEGER" property="deTypeFormat" />
|
2021-05-13 14:45:01 +08:00
|
|
|
<result column="de_extract_type" jdbcType="INTEGER" property="deExtractType" />
|
2021-07-08 13:50:22 +08:00
|
|
|
<result column="ext_field" jdbcType="INTEGER" property="extField" />
|
2021-02-24 17:14:37 +08:00
|
|
|
<result column="checked" jdbcType="BIT" property="checked" />
|
|
|
|
<result column="column_index" jdbcType="INTEGER" property="columnIndex" />
|
|
|
|
<result column="last_sync_time" jdbcType="BIGINT" property="lastSyncTime" />
|
|
|
|
</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-07-08 13:50:22 +08:00
|
|
|
id, table_id, origin_name, `name`, dataease_name, group_type, `type`, `size`, de_type,
|
|
|
|
de_type_format, de_extract_type, ext_field, `checked`, column_index, last_sync_time
|
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,
|
2021-07-08 13:50:22 +08:00
|
|
|
`name`, dataease_name, group_type,
|
|
|
|
`type`, `size`, de_type,
|
|
|
|
de_type_format, de_extract_type, ext_field,
|
2021-05-13 14:45:01 +08:00
|
|
|
`checked`, column_index, last_sync_time
|
|
|
|
)
|
2021-02-24 17:14:37 +08:00
|
|
|
values (#{id,jdbcType=VARCHAR}, #{tableId,jdbcType=VARCHAR}, #{originName,jdbcType=VARCHAR},
|
2021-07-08 13:50:22 +08:00
|
|
|
#{name,jdbcType=VARCHAR}, #{dataeaseName,jdbcType=VARCHAR}, #{groupType,jdbcType=VARCHAR},
|
|
|
|
#{type,jdbcType=VARCHAR}, #{size,jdbcType=INTEGER}, #{deType,jdbcType=INTEGER},
|
|
|
|
#{deTypeFormat,jdbcType=INTEGER}, #{deExtractType,jdbcType=INTEGER}, #{extField,jdbcType=INTEGER},
|
2021-05-13 14:45:01 +08:00
|
|
|
#{checked,jdbcType=BIT}, #{columnIndex,jdbcType=INTEGER}, #{lastSyncTime,jdbcType=BIGINT}
|
|
|
|
)
|
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>
|
2021-05-07 16:01:04 +08:00
|
|
|
<if test="dataeaseName != null">
|
|
|
|
dataease_name,
|
|
|
|
</if>
|
2021-07-08 13:50:22 +08:00
|
|
|
<if test="groupType != null">
|
|
|
|
group_type,
|
|
|
|
</if>
|
2021-02-24 17:14:37 +08:00
|
|
|
<if test="type != null">
|
|
|
|
`type`,
|
|
|
|
</if>
|
2021-04-27 17:32:26 +08:00
|
|
|
<if test="size != null">
|
|
|
|
`size`,
|
|
|
|
</if>
|
|
|
|
<if test="deType != null">
|
|
|
|
de_type,
|
|
|
|
</if>
|
2021-07-08 13:50:22 +08:00
|
|
|
<if test="deTypeFormat != null">
|
|
|
|
de_type_format,
|
|
|
|
</if>
|
2021-05-13 14:45:01 +08:00
|
|
|
<if test="deExtractType != null">
|
|
|
|
de_extract_type,
|
|
|
|
</if>
|
2021-07-08 13:50:22 +08:00
|
|
|
<if test="extField != null">
|
|
|
|
ext_field,
|
|
|
|
</if>
|
2021-02-24 17:14:37 +08:00
|
|
|
<if test="checked != null">
|
|
|
|
`checked`,
|
|
|
|
</if>
|
|
|
|
<if test="columnIndex != null">
|
|
|
|
column_index,
|
|
|
|
</if>
|
|
|
|
<if test="lastSyncTime != null">
|
|
|
|
last_sync_time,
|
|
|
|
</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="originName != null">
|
|
|
|
#{originName,jdbcType=VARCHAR},
|
|
|
|
</if>
|
|
|
|
<if test="name != null">
|
|
|
|
#{name,jdbcType=VARCHAR},
|
|
|
|
</if>
|
2021-05-07 16:01:04 +08:00
|
|
|
<if test="dataeaseName != null">
|
|
|
|
#{dataeaseName,jdbcType=VARCHAR},
|
|
|
|
</if>
|
2021-07-08 13:50:22 +08:00
|
|
|
<if test="groupType != null">
|
|
|
|
#{groupType,jdbcType=VARCHAR},
|
|
|
|
</if>
|
2021-02-24 17:14:37 +08:00
|
|
|
<if test="type != null">
|
|
|
|
#{type,jdbcType=VARCHAR},
|
|
|
|
</if>
|
2021-04-27 17:32:26 +08:00
|
|
|
<if test="size != null">
|
|
|
|
#{size,jdbcType=INTEGER},
|
|
|
|
</if>
|
|
|
|
<if test="deType != null">
|
|
|
|
#{deType,jdbcType=INTEGER},
|
|
|
|
</if>
|
2021-07-08 13:50:22 +08:00
|
|
|
<if test="deTypeFormat != null">
|
|
|
|
#{deTypeFormat,jdbcType=INTEGER},
|
|
|
|
</if>
|
2021-05-13 14:45:01 +08:00
|
|
|
<if test="deExtractType != null">
|
|
|
|
#{deExtractType,jdbcType=INTEGER},
|
|
|
|
</if>
|
2021-07-08 13:50:22 +08:00
|
|
|
<if test="extField != null">
|
|
|
|
#{extField,jdbcType=INTEGER},
|
|
|
|
</if>
|
2021-02-24 17:14:37 +08:00
|
|
|
<if test="checked != null">
|
|
|
|
#{checked,jdbcType=BIT},
|
|
|
|
</if>
|
|
|
|
<if test="columnIndex != null">
|
|
|
|
#{columnIndex,jdbcType=INTEGER},
|
|
|
|
</if>
|
|
|
|
<if test="lastSyncTime != null">
|
|
|
|
#{lastSyncTime,jdbcType=BIGINT},
|
|
|
|
</if>
|
|
|
|
</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>
|
2021-05-07 16:01:04 +08:00
|
|
|
<if test="record.dataeaseName != null">
|
|
|
|
dataease_name = #{record.dataeaseName,jdbcType=VARCHAR},
|
|
|
|
</if>
|
2021-07-08 13:50:22 +08:00
|
|
|
<if test="record.groupType != null">
|
|
|
|
group_type = #{record.groupType,jdbcType=VARCHAR},
|
|
|
|
</if>
|
2021-02-24 17:14:37 +08:00
|
|
|
<if test="record.type != null">
|
|
|
|
`type` = #{record.type,jdbcType=VARCHAR},
|
|
|
|
</if>
|
2021-04-27 17:32:26 +08:00
|
|
|
<if test="record.size != null">
|
|
|
|
`size` = #{record.size,jdbcType=INTEGER},
|
|
|
|
</if>
|
|
|
|
<if test="record.deType != null">
|
|
|
|
de_type = #{record.deType,jdbcType=INTEGER},
|
|
|
|
</if>
|
2021-07-08 13:50:22 +08:00
|
|
|
<if test="record.deTypeFormat != null">
|
|
|
|
de_type_format = #{record.deTypeFormat,jdbcType=INTEGER},
|
|
|
|
</if>
|
2021-05-13 14:45:01 +08:00
|
|
|
<if test="record.deExtractType != null">
|
|
|
|
de_extract_type = #{record.deExtractType,jdbcType=INTEGER},
|
|
|
|
</if>
|
2021-07-08 13:50:22 +08:00
|
|
|
<if test="record.extField != null">
|
|
|
|
ext_field = #{record.extField,jdbcType=INTEGER},
|
|
|
|
</if>
|
2021-02-24 17:14:37 +08:00
|
|
|
<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>
|
|
|
|
</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},
|
2021-05-07 16:01:04 +08:00
|
|
|
dataease_name = #{record.dataeaseName,jdbcType=VARCHAR},
|
2021-07-08 13:50:22 +08:00
|
|
|
group_type = #{record.groupType,jdbcType=VARCHAR},
|
2021-02-24 17:14:37 +08:00
|
|
|
`type` = #{record.type,jdbcType=VARCHAR},
|
2021-04-27 17:32:26 +08:00
|
|
|
`size` = #{record.size,jdbcType=INTEGER},
|
|
|
|
de_type = #{record.deType,jdbcType=INTEGER},
|
2021-07-08 13:50:22 +08:00
|
|
|
de_type_format = #{record.deTypeFormat,jdbcType=INTEGER},
|
2021-05-13 14:45:01 +08:00
|
|
|
de_extract_type = #{record.deExtractType,jdbcType=INTEGER},
|
2021-07-08 13:50:22 +08:00
|
|
|
ext_field = #{record.extField,jdbcType=INTEGER},
|
2021-02-24 17:14:37 +08:00
|
|
|
`checked` = #{record.checked,jdbcType=BIT},
|
|
|
|
column_index = #{record.columnIndex,jdbcType=INTEGER},
|
2021-04-27 17:32:26 +08:00
|
|
|
last_sync_time = #{record.lastSyncTime,jdbcType=BIGINT}
|
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>
|
2021-05-07 16:01:04 +08:00
|
|
|
<if test="dataeaseName != null">
|
|
|
|
dataease_name = #{dataeaseName,jdbcType=VARCHAR},
|
|
|
|
</if>
|
2021-07-08 13:50:22 +08:00
|
|
|
<if test="groupType != null">
|
|
|
|
group_type = #{groupType,jdbcType=VARCHAR},
|
|
|
|
</if>
|
2021-02-24 17:14:37 +08:00
|
|
|
<if test="type != null">
|
|
|
|
`type` = #{type,jdbcType=VARCHAR},
|
|
|
|
</if>
|
2021-04-27 17:32:26 +08:00
|
|
|
<if test="size != null">
|
|
|
|
`size` = #{size,jdbcType=INTEGER},
|
|
|
|
</if>
|
|
|
|
<if test="deType != null">
|
|
|
|
de_type = #{deType,jdbcType=INTEGER},
|
|
|
|
</if>
|
2021-07-08 13:50:22 +08:00
|
|
|
<if test="deTypeFormat != null">
|
|
|
|
de_type_format = #{deTypeFormat,jdbcType=INTEGER},
|
|
|
|
</if>
|
2021-05-13 14:45:01 +08:00
|
|
|
<if test="deExtractType != null">
|
|
|
|
de_extract_type = #{deExtractType,jdbcType=INTEGER},
|
|
|
|
</if>
|
2021-07-08 13:50:22 +08:00
|
|
|
<if test="extField != null">
|
|
|
|
ext_field = #{extField,jdbcType=INTEGER},
|
|
|
|
</if>
|
2021-02-24 17:14:37 +08:00
|
|
|
<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>
|
|
|
|
</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},
|
2021-05-07 16:01:04 +08:00
|
|
|
dataease_name = #{dataeaseName,jdbcType=VARCHAR},
|
2021-07-08 13:50:22 +08:00
|
|
|
group_type = #{groupType,jdbcType=VARCHAR},
|
2021-02-24 17:14:37 +08:00
|
|
|
`type` = #{type,jdbcType=VARCHAR},
|
2021-04-27 17:32:26 +08:00
|
|
|
`size` = #{size,jdbcType=INTEGER},
|
|
|
|
de_type = #{deType,jdbcType=INTEGER},
|
2021-07-08 13:50:22 +08:00
|
|
|
de_type_format = #{deTypeFormat,jdbcType=INTEGER},
|
2021-05-13 14:45:01 +08:00
|
|
|
de_extract_type = #{deExtractType,jdbcType=INTEGER},
|
2021-07-08 13:50:22 +08:00
|
|
|
ext_field = #{extField,jdbcType=INTEGER},
|
2021-02-24 17:14:37 +08:00
|
|
|
`checked` = #{checked,jdbcType=BIT},
|
|
|
|
column_index = #{columnIndex,jdbcType=INTEGER},
|
2021-04-27 17:32:26 +08:00
|
|
|
last_sync_time = #{lastSyncTime,jdbcType=BIGINT}
|
2021-02-24 17:14:37 +08:00
|
|
|
where id = #{id,jdbcType=VARCHAR}
|
|
|
|
</update>
|
|
|
|
</mapper>
|