<?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.jsh.erp.datasource.mappers.ConfigSecurityMapper">
|
<resultMap id="BaseResultMap" type="com.jsh.erp.datasource.entities.ConfigSecurity">
|
<id column="id" jdbcType="BIGINT" property="id" />
|
<result column="keyword" jdbcType="VARCHAR" property="keyword" />
|
<result column="type" jdbcType="VARCHAR" property="type" />
|
<result column="description" jdbcType="VARCHAR" property="description" />
|
<result column="sort_order" jdbcType="INTEGER" property="sortOrder" />
|
<result column="status" jdbcType="BIT" property="status" />
|
<result column="delete_flag" jdbcType="BIT" property="deleteFlag" />
|
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
|
<result column="creator" jdbcType="BIGINT" property="creator" />
|
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
|
<result column="updater" jdbcType="BIGINT" property="updater" />
|
<result column="tenant_id" jdbcType="BIGINT" property="tenantId" />
|
</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, keyword, type, description, sort_order, status, delete_flag, create_time, creator,
|
update_time, updater, tenant_id
|
</sql>
|
<select id="selectByExample" parameterType="com.jsh.erp.datasource.entities.ConfigSecurityExample" resultMap="BaseResultMap">
|
select
|
<if test="distinct">
|
distinct
|
</if>
|
<include refid="Base_Column_List" />
|
from config_security
|
<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.Long" resultMap="BaseResultMap">
|
select
|
<include refid="Base_Column_List" />
|
from config_security
|
where id = #{id,jdbcType=BIGINT}
|
</select>
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
|
delete from config_security
|
where id = #{id,jdbcType=BIGINT}
|
</delete>
|
<delete id="deleteByExample" parameterType="com.jsh.erp.datasource.entities.ConfigSecurityExample">
|
delete from config_security
|
<if test="_parameter != null">
|
<include refid="Example_Where_Clause" />
|
</if>
|
</delete>
|
<insert id="insert" parameterType="com.jsh.erp.datasource.entities.ConfigSecurity">
|
insert into config_security (id, keyword, type,
|
description, sort_order, status,
|
delete_flag, create_time, creator,
|
update_time, updater, tenant_id
|
)
|
values (#{id,jdbcType=BIGINT}, #{keyword,jdbcType=VARCHAR}, #{type,jdbcType=VARCHAR},
|
#{description,jdbcType=VARCHAR}, #{sortOrder,jdbcType=INTEGER}, #{status,jdbcType=BIT},
|
#{deleteFlag,jdbcType=BIT}, #{createTime,jdbcType=TIMESTAMP}, #{creator,jdbcType=BIGINT},
|
#{updateTime,jdbcType=TIMESTAMP}, #{updater,jdbcType=BIGINT}, #{tenantId,jdbcType=BIGINT}
|
)
|
</insert>
|
<insert id="insertSelective" parameterType="com.jsh.erp.datasource.entities.ConfigSecurity">
|
insert into config_security
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
<if test="id != null">
|
id,
|
</if>
|
<if test="keyword != null">
|
keyword,
|
</if>
|
<if test="type != null">
|
type,
|
</if>
|
<if test="description != null">
|
description,
|
</if>
|
<if test="sortOrder != null">
|
sort_order,
|
</if>
|
<if test="status != null">
|
status,
|
</if>
|
<if test="deleteFlag != null">
|
delete_flag,
|
</if>
|
<if test="createTime != null">
|
create_time,
|
</if>
|
<if test="creator != null">
|
creator,
|
</if>
|
<if test="updateTime != null">
|
update_time,
|
</if>
|
<if test="updater != null">
|
updater,
|
</if>
|
<if test="tenantId != null">
|
tenant_id,
|
</if>
|
</trim>
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
<if test="id != null">
|
#{id,jdbcType=BIGINT},
|
</if>
|
<if test="keyword != null">
|
#{keyword,jdbcType=VARCHAR},
|
</if>
|
<if test="type != null">
|
#{type,jdbcType=VARCHAR},
|
</if>
|
<if test="description != null">
|
#{description,jdbcType=VARCHAR},
|
</if>
|
<if test="sortOrder != null">
|
#{sortOrder,jdbcType=INTEGER},
|
</if>
|
<if test="status != null">
|
#{status,jdbcType=BIT},
|
</if>
|
<if test="deleteFlag != null">
|
#{deleteFlag,jdbcType=BIT},
|
</if>
|
<if test="createTime != null">
|
#{createTime,jdbcType=TIMESTAMP},
|
</if>
|
<if test="creator != null">
|
#{creator,jdbcType=BIGINT},
|
</if>
|
<if test="updateTime != null">
|
#{updateTime,jdbcType=TIMESTAMP},
|
</if>
|
<if test="updater != null">
|
#{updater,jdbcType=BIGINT},
|
</if>
|
<if test="tenantId != null">
|
#{tenantId,jdbcType=BIGINT},
|
</if>
|
</trim>
|
</insert>
|
<select id="countByExample" parameterType="com.jsh.erp.datasource.entities.ConfigSecurityExample" resultType="java.lang.Long">
|
select count(*) from config_security
|
<if test="_parameter != null">
|
<include refid="Example_Where_Clause" />
|
</if>
|
</select>
|
<update id="updateByExampleSelective" parameterType="map">
|
update config_security
|
<set>
|
<if test="record.id != null">
|
id = #{record.id,jdbcType=BIGINT},
|
</if>
|
<if test="record.keyword != null">
|
keyword = #{record.keyword,jdbcType=VARCHAR},
|
</if>
|
<if test="record.type != null">
|
type = #{record.type,jdbcType=VARCHAR},
|
</if>
|
<if test="record.description != null">
|
description = #{record.description,jdbcType=VARCHAR},
|
</if>
|
<if test="record.sortOrder != null">
|
sort_order = #{record.sortOrder,jdbcType=INTEGER},
|
</if>
|
<if test="record.status != null">
|
status = #{record.status,jdbcType=BIT},
|
</if>
|
<if test="record.deleteFlag != null">
|
delete_flag = #{record.deleteFlag,jdbcType=BIT},
|
</if>
|
<if test="record.createTime != null">
|
create_time = #{record.createTime,jdbcType=TIMESTAMP},
|
</if>
|
<if test="record.creator != null">
|
creator = #{record.creator,jdbcType=BIGINT},
|
</if>
|
<if test="record.updateTime != null">
|
update_time = #{record.updateTime,jdbcType=TIMESTAMP},
|
</if>
|
<if test="record.updater != null">
|
updater = #{record.updater,jdbcType=BIGINT},
|
</if>
|
<if test="record.tenantId != null">
|
tenant_id = #{record.tenantId,jdbcType=BIGINT},
|
</if>
|
</set>
|
<if test="_parameter != null">
|
<include refid="Update_By_Example_Where_Clause" />
|
</if>
|
</update>
|
<update id="updateByExample" parameterType="map">
|
update config_security
|
set id = #{record.id,jdbcType=BIGINT},
|
keyword = #{record.keyword,jdbcType=VARCHAR},
|
type = #{record.type,jdbcType=VARCHAR},
|
description = #{record.description,jdbcType=VARCHAR},
|
sort_order = #{record.sortOrder,jdbcType=INTEGER},
|
status = #{record.status,jdbcType=BIT},
|
delete_flag = #{record.deleteFlag,jdbcType=BIT},
|
create_time = #{record.createTime,jdbcType=TIMESTAMP},
|
creator = #{record.creator,jdbcType=BIGINT},
|
update_time = #{record.updateTime,jdbcType=TIMESTAMP},
|
updater = #{record.updater,jdbcType=BIGINT},
|
tenant_id = #{record.tenantId,jdbcType=BIGINT}
|
<if test="_parameter != null">
|
<include refid="Update_By_Example_Where_Clause" />
|
</if>
|
</update>
|
<update id="updateByPrimaryKeySelective" parameterType="com.jsh.erp.datasource.entities.ConfigSecurity">
|
update config_security
|
<set>
|
<if test="keyword != null">
|
keyword = #{keyword,jdbcType=VARCHAR},
|
</if>
|
<if test="type != null">
|
type = #{type,jdbcType=VARCHAR},
|
</if>
|
<if test="description != null">
|
description = #{description,jdbcType=VARCHAR},
|
</if>
|
<if test="sortOrder != null">
|
sort_order = #{sortOrder,jdbcType=INTEGER},
|
</if>
|
<if test="status != null">
|
status = #{status,jdbcType=BIT},
|
</if>
|
<if test="deleteFlag != null">
|
delete_flag = #{deleteFlag,jdbcType=BIT},
|
</if>
|
<if test="createTime != null">
|
create_time = #{createTime,jdbcType=TIMESTAMP},
|
</if>
|
<if test="creator != null">
|
creator = #{creator,jdbcType=BIGINT},
|
</if>
|
<if test="updateTime != null">
|
update_time = #{updateTime,jdbcType=TIMESTAMP},
|
</if>
|
<if test="updater != null">
|
updater = #{updater,jdbcType=BIGINT},
|
</if>
|
<if test="tenantId != null">
|
tenant_id = #{tenantId,jdbcType=BIGINT},
|
</if>
|
</set>
|
where id = #{id,jdbcType=BIGINT}
|
</update>
|
<update id="updateByPrimaryKey" parameterType="com.jsh.erp.datasource.entities.ConfigSecurity">
|
update config_security
|
set keyword = #{keyword,jdbcType=VARCHAR},
|
type = #{type,jdbcType=VARCHAR},
|
description = #{description,jdbcType=VARCHAR},
|
sort_order = #{sortOrder,jdbcType=INTEGER},
|
status = #{status,jdbcType=BIT},
|
delete_flag = #{deleteFlag,jdbcType=BIT},
|
create_time = #{createTime,jdbcType=TIMESTAMP},
|
creator = #{creator,jdbcType=BIGINT},
|
update_time = #{updateTime,jdbcType=TIMESTAMP},
|
updater = #{updater,jdbcType=BIGINT},
|
tenant_id = #{tenantId,jdbcType=BIGINT}
|
where id = #{id,jdbcType=BIGINT}
|
</update>
|
</mapper>
|