<?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.ycl.platform.mapper.CheckRuleMapper">
|
|
<resultMap type="com.ycl.platform.domain.entity.CheckRule" id="CheckRuleResult">
|
<result property="id" column="id" />
|
<result property="ruleName" column="rule_name" />
|
<result property="ruleDetail" column="rule_detail" />
|
<result property="ruleCategory" column="rule_category" />
|
<result property="examineCategory" column="examine_category" />
|
<result property="ruleDescription" column="rule_description" />
|
<result property="auditState" column="audit_state" />
|
<result property="state" column="state" />
|
<result property="createTime" column="create_time" />
|
<result property="updateTime" column="update_time" />
|
<result property="deleted" column="deleted" />
|
</resultMap>
|
|
<sql id="selectCheckRuleVo">
|
select id, rule_name, rule_detail, rule_category, examine_category, rule_description, audit_state, state, create_time, update_time, deleted from t_check_rule
|
</sql>
|
|
<select id="selectCheckRuleList" resultMap="CheckRuleResult">
|
<include refid="selectCheckRuleVo"/>
|
<where>
|
<if test="ruleName != null and ruleName != ''"> and rule_name like concat('%', #{ruleName}, '%')</if>
|
<if test="ruleCategory != null "> and rule_category = #{ruleCategory}</if>
|
<if test="examineCategory != null "> and examine_category = #{examineCategory}</if>
|
<if test="ruleDescription != null and ruleDescription != ''"> and rule_description = #{ruleDescription}</if>
|
<if test="auditState != null "> and audit_state = #{auditState}</if>
|
<if test="state != null "> and state = #{state}</if>
|
</where>
|
</select>
|
|
<select id="selectCheckRuleById" resultMap="CheckRuleResult">
|
<include refid="selectCheckRuleVo"/>
|
where id = #{id}
|
</select>
|
|
<insert id="insertCheckRule" useGeneratedKeys="true" keyProperty="id">
|
insert into t_check_rule
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
<if test="ruleName != null and ruleName != ''">rule_name,</if>
|
<if test="ruleDetail != null">rule_detail,</if>
|
<if test="ruleCategory != null">rule_category,</if>
|
<if test="examineCategory != null">examine_category,</if>
|
<if test="ruleDescription != null">rule_description,</if>
|
<if test="auditState != null">audit_state,</if>
|
<if test="state != null">state,</if>
|
<if test="createTime != null">create_time,</if>
|
<if test="updateTime != null">update_time,</if>
|
<if test="deleted != null">deleted,</if>
|
</trim>
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
<if test="ruleName != null and ruleName != ''">#{ruleName},</if>
|
<if test="ruleDetail != null">#{ruleDetail},</if>
|
<if test="ruleCategory != null">#{ruleCategory},</if>
|
<if test="examineCategory != null">#{examineCategory},</if>
|
<if test="ruleDescription != null">#{ruleDescription},</if>
|
<if test="auditState != null">#{auditState},</if>
|
<if test="state != null">#{state},</if>
|
<if test="createTime != null">#{createTime},</if>
|
<if test="updateTime != null">#{updateTime},</if>
|
<if test="deleted != null">#{deleted},</if>
|
</trim>
|
</insert>
|
|
<update id="updateCheckRule" >
|
update t_check_rule
|
<trim prefix="SET" suffixOverrides=",">
|
<if test="ruleName != null and ruleName != ''">rule_name = #{ruleName},</if>
|
<if test="ruleDetail != null">rule_detail = #{ruleDetail},</if>
|
<if test="ruleCategory != null">rule_category = #{ruleCategory},</if>
|
<if test="examineCategory != null">examine_category = #{examineCategory},</if>
|
<if test="ruleDescription != null">rule_description = #{ruleDescription},</if>
|
<if test="auditState != null">audit_state = #{auditState},</if>
|
<if test="state != null">state = #{state},</if>
|
<if test="createTime != null">create_time = #{createTime},</if>
|
<if test="updateTime != null">update_time = #{updateTime},</if>
|
<if test="deleted != null">deleted = #{deleted},</if>
|
</trim>
|
where id = #{id}
|
</update>
|
|
<delete id="deleteCheckRuleById" >
|
delete from t_check_rule where id = #{id}
|
</delete>
|
|
<delete id="deleteCheckRuleByIds" >
|
delete from t_check_rule where id in
|
<foreach item="id" collection="array" open="(" separator="," close=")">
|
#{id}
|
</foreach>
|
</delete>
|
</mapper>
|