parent
abf4724d7d
commit
5f3948c732
@ -1,141 +1,161 @@
|
||||
<?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.glxp.udi.admin.dao.param.SystemParamConfigCustomerDao">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.udi.admin.entity.param.SystemParamConfigCustomerEntity">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.udi.admin.entity.param.SystemParamConfigCustomerEntity">
|
||||
<!--@Table system_param_config_customer-->
|
||||
<id column="id" jdbcType="INTEGER" property="id"/>
|
||||
<result column="parentId" jdbcType="INTEGER" property="parentId"/>
|
||||
<result column="paramName" jdbcType="VARCHAR" property="paramName"/>
|
||||
<result column="paramKey" jdbcType="VARCHAR" property="paramKey"/>
|
||||
<result column="paramValue" jdbcType="VARCHAR" property="paramValue"/>
|
||||
<result column="paramStatus" jdbcType="INTEGER" property="paramStatus"/>
|
||||
<result column="paramType" jdbcType="INTEGER" property="paramType"/>
|
||||
<result column="paramExplain" jdbcType="VARCHAR" property="paramExplain"/>
|
||||
<result column="customerId" jdbcType="VARCHAR" property="customerId"/>
|
||||
</resultMap>
|
||||
|
||||
<!--@Table system_param_config_customer-->
|
||||
<id column="id" jdbcType="INTEGER" property="id" />
|
||||
<result column="parentId" jdbcType="INTEGER" property="parentId" />
|
||||
<result column="paramName" jdbcType="VARCHAR" property="paramName" />
|
||||
<result column="paramKey" jdbcType="VARCHAR" property="paramKey" />
|
||||
<result column="paramValue" jdbcType="VARCHAR" property="paramValue" />
|
||||
<result column="paramStatus" jdbcType="INTEGER" property="paramStatus" />
|
||||
<result column="paramType" jdbcType="INTEGER" property="paramType" />
|
||||
<result column="paramExplain" jdbcType="VARCHAR" property="paramExplain" />
|
||||
<result column="customerId" jdbcType="VARCHAR" property="customerId" />
|
||||
</resultMap>
|
||||
<sql id="Base_Column_List">
|
||||
id, parentId, paramName, paramKey, paramValue, paramStatus, paramType, paramExplain,
|
||||
customerId
|
||||
</sql>
|
||||
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
|
||||
select
|
||||
<include refid="Base_Column_List" />
|
||||
from system_param_config_customer
|
||||
where id = #{id,jdbcType=INTEGER}
|
||||
</select>
|
||||
<insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.glxp.udi.admin.entity.param.SystemParamConfigCustomerEntity" useGeneratedKeys="true">
|
||||
insert into system_param_config_customer
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="parentId != null">
|
||||
<sql id="Base_Column_List">
|
||||
id,
|
||||
parentId,
|
||||
</if>
|
||||
<if test="paramName != null">
|
||||
paramName,
|
||||
</if>
|
||||
<if test="paramKey != null">
|
||||
paramKey,
|
||||
</if>
|
||||
<if test="paramValue != null">
|
||||
paramValue,
|
||||
</if>
|
||||
<if test="paramStatus != null">
|
||||
paramStatus,
|
||||
</if>
|
||||
<if test="paramType != null">
|
||||
paramType,
|
||||
</if>
|
||||
<if test="paramExplain != null">
|
||||
paramExplain,
|
||||
</if>
|
||||
<if test="customerId != null">
|
||||
customerId,
|
||||
</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="parentId != null">
|
||||
#{parentId,jdbcType=INTEGER},
|
||||
</if>
|
||||
<if test="paramName != null">
|
||||
#{paramName,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="paramKey != null">
|
||||
#{paramKey,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="paramValue != null">
|
||||
#{paramValue,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="paramStatus != null">
|
||||
#{paramStatus,jdbcType=INTEGER},
|
||||
</if>
|
||||
<if test="paramType != null">
|
||||
#{paramType,jdbcType=INTEGER},
|
||||
</if>
|
||||
<if test="paramExplain != null">
|
||||
#{paramExplain,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="customerId != null">
|
||||
#{customerId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
</trim>
|
||||
</insert>
|
||||
<update id="updateByPrimaryKeySelective" parameterType="com.glxp.udi.admin.entity.param.SystemParamConfigCustomerEntity">
|
||||
update system_param_config_customer
|
||||
<set>
|
||||
<if test="parentId != null">
|
||||
parentId = #{parentId,jdbcType=INTEGER},
|
||||
</if>
|
||||
<if test="paramName != null">
|
||||
paramName = #{paramName,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="paramKey != null">
|
||||
paramKey = #{paramKey,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="paramValue != null">
|
||||
paramValue = #{paramValue,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="paramStatus != null">
|
||||
paramStatus = #{paramStatus,jdbcType=INTEGER},
|
||||
</if>
|
||||
<if test="paramType != null">
|
||||
paramType = #{paramType,jdbcType=INTEGER},
|
||||
</if>
|
||||
<if test="paramExplain != null">
|
||||
paramExplain = #{paramExplain,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="customerId != null">
|
||||
customerId = #{customerId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
</set>
|
||||
where id = #{id,jdbcType=INTEGER}
|
||||
</update>
|
||||
<update id="updateByPrimaryKey" parameterType="com.glxp.udi.admin.entity.param.SystemParamConfigCustomerEntity">
|
||||
update system_param_config_customer
|
||||
set parentId = #{parentId,jdbcType=INTEGER},
|
||||
paramName = #{paramName,jdbcType=VARCHAR},
|
||||
paramKey = #{paramKey,jdbcType=VARCHAR},
|
||||
paramValue = #{paramValue,jdbcType=VARCHAR},
|
||||
paramStatus = #{paramStatus,jdbcType=INTEGER},
|
||||
paramType = #{paramType,jdbcType=INTEGER},
|
||||
paramExplain = #{paramExplain,jdbcType=VARCHAR},
|
||||
customerId = #{customerId,jdbcType=VARCHAR}
|
||||
where id = #{id,jdbcType=INTEGER}
|
||||
</update>
|
||||
customerId
|
||||
</sql>
|
||||
|
||||
<select id="selectCustomizeParam" resultMap="BaseResultMap">
|
||||
select * from system_param_config_customer where paramStatus = #{systemParamConfigRequest.paramStatus}
|
||||
and customerId = #{systemParamConfigRequest.customerId}
|
||||
and paramKey in
|
||||
<foreach collection="systemParams" index="index" item="item" open="(" close=")" separator=",">
|
||||
#{item}
|
||||
</foreach>
|
||||
</select>
|
||||
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
|
||||
select
|
||||
<include refid="Base_Column_List"/>
|
||||
from system_param_config_customer
|
||||
where id = #{id,jdbcType=INTEGER}
|
||||
</select>
|
||||
|
||||
<insert id="insertSelective" keyColumn="id" keyProperty="id"
|
||||
parameterType="com.glxp.udi.admin.entity.param.SystemParamConfigCustomerEntity" useGeneratedKeys="true">
|
||||
insert into system_param_config_customer
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="parentId != null">
|
||||
parentId,
|
||||
</if>
|
||||
<if test="paramName != null">
|
||||
paramName,
|
||||
</if>
|
||||
<if test="paramKey != null">
|
||||
paramKey,
|
||||
</if>
|
||||
<if test="paramValue != null">
|
||||
paramValue,
|
||||
</if>
|
||||
<if test="paramStatus != null">
|
||||
paramStatus,
|
||||
</if>
|
||||
<if test="paramType != null">
|
||||
paramType,
|
||||
</if>
|
||||
<if test="paramExplain != null">
|
||||
paramExplain,
|
||||
</if>
|
||||
<if test="customerId != null">
|
||||
customerId,
|
||||
</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="parentId != null">
|
||||
#{parentId,jdbcType=INTEGER},
|
||||
</if>
|
||||
<if test="paramName != null">
|
||||
#{paramName,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="paramKey != null">
|
||||
#{paramKey,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="paramValue != null">
|
||||
#{paramValue,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="paramStatus != null">
|
||||
#{paramStatus,jdbcType=INTEGER},
|
||||
</if>
|
||||
<if test="paramType != null">
|
||||
#{paramType,jdbcType=INTEGER},
|
||||
</if>
|
||||
<if test="paramExplain != null">
|
||||
#{paramExplain,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="customerId != null">
|
||||
#{customerId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateByPrimaryKeySelective"
|
||||
parameterType="com.glxp.udi.admin.entity.param.SystemParamConfigCustomerEntity">
|
||||
update system_param_config_customer
|
||||
<set>
|
||||
<if test="parentId != null">
|
||||
parentId = #{parentId,jdbcType=INTEGER},
|
||||
</if>
|
||||
<if test="paramName != null">
|
||||
paramName = #{paramName,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="paramKey != null">
|
||||
paramKey = #{paramKey,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="paramValue != null">
|
||||
paramValue = #{paramValue,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="paramStatus != null">
|
||||
paramStatus = #{paramStatus,jdbcType=INTEGER},
|
||||
</if>
|
||||
<if test="paramType != null">
|
||||
paramType = #{paramType,jdbcType=INTEGER},
|
||||
</if>
|
||||
<if test="paramExplain != null">
|
||||
paramExplain = #{paramExplain,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="customerId != null">
|
||||
customerId = #{customerId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
</set>
|
||||
where id = #{id,jdbcType=INTEGER}
|
||||
</update>
|
||||
|
||||
<update id="updateByPrimaryKey" parameterType="com.glxp.udi.admin.entity.param.SystemParamConfigCustomerEntity">
|
||||
update system_param_config_customer
|
||||
set parentId = #{parentId,jdbcType=INTEGER},
|
||||
paramName = #{paramName,jdbcType=VARCHAR},
|
||||
paramKey = #{paramKey,jdbcType=VARCHAR},
|
||||
paramValue = #{paramValue,jdbcType=VARCHAR},
|
||||
paramStatus = #{paramStatus,jdbcType=INTEGER},
|
||||
paramType = #{paramType,jdbcType=INTEGER},
|
||||
paramExplain = #{paramExplain,jdbcType=VARCHAR},
|
||||
customerId = #{customerId,jdbcType=VARCHAR}
|
||||
where id = #{id,jdbcType=INTEGER}
|
||||
</update>
|
||||
|
||||
<select id="countByCustomerId" resultType="int">
|
||||
select count(*) from system_param_config_customer where paramKey = #{paramKey} and customerId = #{customerId}
|
||||
</select>
|
||||
<select id="selectCustomizeParam" resultMap="BaseResultMap">
|
||||
select *
|
||||
from system_param_config_customer where paramStatus = #{systemParamConfigRequest.paramStatus}
|
||||
and customerId = #{systemParamConfigRequest.customerId}
|
||||
and paramKey in
|
||||
<foreach collection="systemParams" index="index" item="item" open="(" close=")" separator=",">
|
||||
#{item}
|
||||
</foreach>
|
||||
</select>
|
||||
|
||||
<select id="countByCustomerId" resultType="int">
|
||||
select count(*)
|
||||
from system_param_config_customer
|
||||
where paramKey = #{paramKey}
|
||||
and customerId = #{customerId}
|
||||
</select>
|
||||
|
||||
<select id="selectByParamKeyAndCustomerId" resultMap="BaseResultMap">
|
||||
select * from system_param_config_customer where paramKey = #{paramKey} and customerId = #{customerId}
|
||||
<select id="selectByParamKeyAndCustomerId" resultMap="BaseResultMap">
|
||||
select *
|
||||
from system_param_config_customer
|
||||
where paramKey = #{paramKey}
|
||||
and customerId = #{customerId}
|
||||
</select>
|
||||
</mapper>
|
Loading…
Reference in New Issue