fuliqi
2024-09-11 b14531e3b850fe6d2fa916ba7b88b3e2bd2ff30a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?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="ruleIndex"    column="rule_index"    />
        <result property="ruleCategory"    column="rule_category"    />
        <result property="ruleCondition"    column="rule_condition"    />
        <result property="ruleDescription"    column="rule_description"    />
        <result property="icon"    column="icon"    />
        <result property="updateTime"    column="update_time"    />
        <result property="state"    column="state"    />
        <result property="deleted"    column="deleted"    />
        <result property="apiUrl"    column="api_url"    />
    </resultMap>
 
    <sql id="selectCheckRuleVo">
        select id, rule_name, rule_index, rule_category, rule_condition, rule_description, rule_object,icon,
               update_time,  state, deleted
        from t_check_rule
    </sql>
 
    <select id="selectCheckRuleList" resultMap="CheckRuleResult">
        select cr.id, cr.rule_name, cr.rule_index, cr.rule_category, cr.rule_condition, cr.rule_description,
        cr.update_time, cr.state, cr.deleted,cr.icon, cr.api_url
        from t_check_rule cr
        <where>
            <if test="ruleName != null  and ruleName != ''"> and rule_name like concat('%', #{ruleName}, '%')</if>
            <if test="ruleIndex != null  and ruleIndex != ''"> and rule_index = #{ruleIndex}</if>
            <if test="ruleCategory != null "> and rule_category = #{ruleCategory}</if>
            <if test="ruleCondition != null  and ruleCondition != ''"> and rule_condition = #{ruleCondition}</if>
            <if test="ruleDescription != null  and ruleDescription != ''"> and rule_description = #{ruleDescription}</if>
            <if test="state != null "> and state = #{state}</if>
            <if test="deleted != null  and deleted != ''"> and deleted = #{deleted}</if>
        </where>
        ORDER BY
            order_num
    </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="ruleIndex != null">rule_index,</if>
            <if test="ruleCategory != null">rule_category,</if>
            <if test="ruleCondition != null">rule_condition,</if>
            <if test="ruleDescription != null">rule_description,</if>
            <if test="updateTime != null">update_time,</if>
            <if test="state != null">state,</if>
            <if test="deleted != null">deleted,</if>
         </trim>
        <trim prefix="values (" suffix=")" suffixOverrides=",">
            <if test="ruleName != null and ruleName != ''">#{ruleName},</if>
            <if test="ruleIndex != null">#{ruleIndex},</if>
            <if test="ruleCategory != null">#{ruleCategory},</if>
            <if test="ruleCondition != null">#{ruleCondition},</if>
            <if test="ruleDescription != null">#{ruleDescription},</if>
            <if test="updateTime != null">#{updateTime},</if>
            <if test="state != null">#{state},</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="ruleIndex != null">rule_index = #{ruleIndex},</if>
            <if test="ruleCategory != null">rule_category = #{ruleCategory},</if>
            <if test="ruleCondition != null">rule_condition = #{ruleCondition},</if>
            <if test="ruleDescription != null">rule_description = #{ruleDescription},</if>
            <if test="updateTime != null">update_time = #{updateTime},</if>
            <if test="state != null">state = #{state},</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>