mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-15 06:27:21 +00:00
194 lines
7.4 KiB
XML
194 lines
7.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.tencent.supersonic.semantic.model.infrastructure.mapper.DatasourceRelaDOMapper">
|
|
<resultMap id="BaseResultMap" type="com.tencent.supersonic.semantic.model.domain.dataobject.DatasourceRelaDO">
|
|
<id column="id" jdbcType="BIGINT" property="id" />
|
|
<result column="model_id" jdbcType="BIGINT" property="modelId" />
|
|
<result column="datasource_from" jdbcType="BIGINT" property="datasourceFrom" />
|
|
<result column="datasource_to" jdbcType="BIGINT" property="datasourceTo" />
|
|
<result column="join_key" jdbcType="VARCHAR" property="joinKey" />
|
|
<result column="created_at" jdbcType="TIMESTAMP" property="createdAt" />
|
|
<result column="created_by" jdbcType="VARCHAR" property="createdBy" />
|
|
<result column="updated_at" jdbcType="TIMESTAMP" property="updatedAt" />
|
|
<result column="updated_by" jdbcType="VARCHAR" property="updatedBy" />
|
|
</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="Base_Column_List">
|
|
id, model_id, datasource_from, datasource_to, join_key, created_at, created_by, updated_at,
|
|
updated_by
|
|
</sql>
|
|
<select id="selectByExample" parameterType="com.tencent.supersonic.semantic.model.domain.dataobject.DatasourceRelaDOExample" resultMap="BaseResultMap">
|
|
select
|
|
<if test="distinct">
|
|
distinct
|
|
</if>
|
|
<include refid="Base_Column_List" />
|
|
from s2_datasource_rela
|
|
<if test="_parameter != null">
|
|
<include refid="Example_Where_Clause" />
|
|
</if>
|
|
<if test="orderByClause != null">
|
|
order by ${orderByClause}
|
|
</if>
|
|
<if test="limitStart != null and limitStart>=0">
|
|
limit #{limitStart} , #{limitEnd}
|
|
</if>
|
|
</select>
|
|
<select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
|
|
select
|
|
<include refid="Base_Column_List" />
|
|
from s2_datasource_rela
|
|
where id = #{id,jdbcType=BIGINT}
|
|
</select>
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
|
|
delete from s2_datasource_rela
|
|
where id = #{id,jdbcType=BIGINT}
|
|
</delete>
|
|
<insert id="insert" parameterType="com.tencent.supersonic.semantic.model.domain.dataobject.DatasourceRelaDO">
|
|
insert into s2_datasource_rela (id, model_id, datasource_from,
|
|
datasource_to, join_key, created_at,
|
|
created_by, updated_at, updated_by
|
|
)
|
|
values (#{id,jdbcType=BIGINT}, #{modelId,jdbcType=BIGINT}, #{datasourceFrom,jdbcType=BIGINT},
|
|
#{datasourceTo,jdbcType=BIGINT}, #{joinKey,jdbcType=VARCHAR}, #{createdAt,jdbcType=TIMESTAMP},
|
|
#{createdBy,jdbcType=VARCHAR}, #{updatedAt,jdbcType=TIMESTAMP}, #{updatedBy,jdbcType=VARCHAR}
|
|
)
|
|
</insert>
|
|
<insert id="insertSelective" parameterType="com.tencent.supersonic.semantic.model.domain.dataobject.DatasourceRelaDO">
|
|
insert into s2_datasource_rela
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
<if test="id != null">
|
|
id,
|
|
</if>
|
|
<if test="modelId != null">
|
|
model_id,
|
|
</if>
|
|
<if test="datasourceFrom != null">
|
|
datasource_from,
|
|
</if>
|
|
<if test="datasourceTo != null">
|
|
datasource_to,
|
|
</if>
|
|
<if test="joinKey != null">
|
|
join_key,
|
|
</if>
|
|
<if test="createdAt != null">
|
|
created_at,
|
|
</if>
|
|
<if test="createdBy != null">
|
|
created_by,
|
|
</if>
|
|
<if test="updatedAt != null">
|
|
updated_at,
|
|
</if>
|
|
<if test="updatedBy != null">
|
|
updated_by,
|
|
</if>
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<if test="id != null">
|
|
#{id,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="modelId != null">
|
|
#{modelId,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="datasourceFrom != null">
|
|
#{datasourceFrom,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="datasourceTo != null">
|
|
#{datasourceTo,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="joinKey != null">
|
|
#{joinKey,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="createdAt != null">
|
|
#{createdAt,jdbcType=TIMESTAMP},
|
|
</if>
|
|
<if test="createdBy != null">
|
|
#{createdBy,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="updatedAt != null">
|
|
#{updatedAt,jdbcType=TIMESTAMP},
|
|
</if>
|
|
<if test="updatedBy != null">
|
|
#{updatedBy,jdbcType=VARCHAR},
|
|
</if>
|
|
</trim>
|
|
</insert>
|
|
<select id="countByExample" parameterType="com.tencent.supersonic.semantic.model.domain.dataobject.DatasourceRelaDOExample" resultType="java.lang.Long">
|
|
select count(*) from s2_datasource_rela
|
|
<if test="_parameter != null">
|
|
<include refid="Example_Where_Clause" />
|
|
</if>
|
|
</select>
|
|
<update id="updateByPrimaryKeySelective" parameterType="com.tencent.supersonic.semantic.model.domain.dataobject.DatasourceRelaDO">
|
|
update s2_datasource_rela
|
|
<set>
|
|
<if test="modelId != null">
|
|
model_id = #{modelId,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="datasourceFrom != null">
|
|
datasource_from = #{datasourceFrom,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="datasourceTo != null">
|
|
datasource_to = #{datasourceTo,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="joinKey != null">
|
|
join_key = #{joinKey,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="createdAt != null">
|
|
created_at = #{createdAt,jdbcType=TIMESTAMP},
|
|
</if>
|
|
<if test="createdBy != null">
|
|
created_by = #{createdBy,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="updatedAt != null">
|
|
updated_at = #{updatedAt,jdbcType=TIMESTAMP},
|
|
</if>
|
|
<if test="updatedBy != null">
|
|
updated_by = #{updatedBy,jdbcType=VARCHAR},
|
|
</if>
|
|
</set>
|
|
where id = #{id,jdbcType=BIGINT}
|
|
</update>
|
|
<update id="updateByPrimaryKey" parameterType="com.tencent.supersonic.semantic.model.domain.dataobject.DatasourceRelaDO">
|
|
update s2_datasource_rela
|
|
set model_id = #{modelId,jdbcType=BIGINT},
|
|
datasource_from = #{datasourceFrom,jdbcType=BIGINT},
|
|
datasource_to = #{datasourceTo,jdbcType=BIGINT},
|
|
join_key = #{joinKey,jdbcType=VARCHAR},
|
|
created_at = #{createdAt,jdbcType=TIMESTAMP},
|
|
created_by = #{createdBy,jdbcType=VARCHAR},
|
|
updated_at = #{updatedAt,jdbcType=TIMESTAMP},
|
|
updated_by = #{updatedBy,jdbcType=VARCHAR}
|
|
where id = #{id,jdbcType=BIGINT}
|
|
</update>
|
|
</mapper> |