liusheng
2025-04-18 55ede3cff5dbbbcb8675d1592a67f20d598d49e7
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<?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.smartor.mapper.SvyLibScriptCategoryMapper">
 
    <resultMap type="com.smartor.domain.SvyLibScriptCategory" id="SvyLibScriptCategoryResult">
        <result property="id" column="id"/>
        <result property="name" column="name"/>
        <result property="topicid" column="topicid"/>
        <result property="pid" column="pid"/>
        <result property="guid" column="guid"/>
        <result property="delFlag" column="del_flag"/>
        <result property="createBy" column="create_by"/>
        <result property="createTime" column="create_time"/>
        <result property="updateBy" column="update_by"/>
        <result property="updateTime" column="update_time"/>
        <result property="orgid" column="orgid"/>
        <result property="seqno" column="seqno"/>
    </resultMap>
 
    <sql id="selectSvyLibScriptCategoryVo">
        select id,
               name,
               topicid,
               pid,
               guid,
               del_flag,
               create_by,
               create_time,
               update_by,
               update_time,
               seqno,
               orgid
        from svy_lib_script_category
    </sql>
 
    <select id="selectSvyLibScriptCategoryList" parameterType="com.smartor.domain.SvyLibScriptCategory"
            resultMap="SvyLibScriptCategoryResult">
        <include refid="selectSvyLibScriptCategoryVo"/>
        <where>
            del_flag=0
            <if test="name != null  and name != ''">and name like concat('%', #{name}, '%')</if>
            <if test="topicid != null ">and topicid = #{topicid}</if>
            <if test="pid != null ">and pid = #{pid}</if>
            <if test="guid != null  and guid != ''">and guid = #{guid}</if>
            <if test="orgid != null ">and orgid = #{orgid}</if>
            <if test="seqno != null ">and seqno = #{seqno}</if>
        </where>
        order by seqno asc
    </select>
 
    <select id="selectSvyLibScriptCategoryById" parameterType="Long" resultMap="SvyLibScriptCategoryResult">
        <include refid="selectSvyLibScriptCategoryVo"/>
        where id = #{id}
    </select>
 
    <insert id="insertSvyLibScriptCategory" parameterType="com.smartor.domain.SvyLibScriptCategory"
            useGeneratedKeys="true" keyProperty="id">
        insert into svy_lib_script_category
        <trim prefix="(" suffix=")" suffixOverrides=",">
            <if test="name != null">name,</if>
            <if test="seqno != null">seqno,</if>
            <if test="topicid != null">topicid,</if>
            <if test="pid != null">pid,</if>
            <if test="guid != null">guid,</if>
            <if test="delFlag != null">del_flag,</if>
            <if test="createBy != null">create_by,</if>
            <if test="createTime != null">create_time,</if>
            <if test="updateBy != null">update_by,</if>
            <if test="updateTime != null">update_time,</if>
            <if test="orgid != null">orgid,</if>
        </trim>
        <trim prefix="values (" suffix=")" suffixOverrides=",">
            <if test="name != null">#{name},</if>
            <if test="seqno != null">#{seqno},</if>
            <if test="topicid != null">#{topicid},</if>
            <if test="pid != null">#{pid},</if>
            <if test="guid != null">#{guid},</if>
            <if test="delFlag != null">#{delFlag},</if>
            <if test="createBy != null">#{createBy},</if>
            <if test="createTime != null">#{createTime},</if>
            <if test="updateBy != null">#{updateBy},</if>
            <if test="updateTime != null">#{updateTime},</if>
            <if test="orgid != null">#{orgid},</if>
        </trim>
    </insert>
 
    <update id="updateSvyLibScriptCategory" parameterType="com.smartor.domain.SvyLibScriptCategory">
        update svy_lib_script_category
        <trim prefix="SET" suffixOverrides=",">
            <if test="name != null">name = #{name},</if>
            <if test="seqno != null">seqno = #{seqno},</if>
            <if test="topicid != null">topicid = #{topicid},</if>
            <if test="pid != null">pid = #{pid},</if>
            <if test="guid != null">guid = #{guid},</if>
            <if test="delFlag != null">del_flag = #{delFlag},</if>
            <if test="createBy != null">create_by = #{createBy},</if>
            <if test="createTime != null">create_time = #{createTime},</if>
            <if test="updateBy != null">update_by = #{updateBy},</if>
            <if test="updateTime != null">update_time = #{updateTime},</if>
            <if test="orgid != null">orgid = #{orgid},</if>
        </trim>
        where id = #{id}
    </update>
 
    <delete id="deleteSvyLibScriptCategoryByIds" parameterType="String">
        delete
        from svy_lib_script_category
        where id = #{id}
    </delete>
 
    <update id="deleteSvyLibScriptCategoryById" parameterType="Long">
        update svy_lib_script_category
        <trim prefix="SET" suffixOverrides=",">
            <if test="delFlag != null">del_flag = 1,</if>
        </trim>
        where id = #{id}
    </update>
 
 
    <select id="selectSeqMax" resultType="integer">
        select max(seqno) seqno
        from ivr_liba_template_assort
 
    </select>
</mapper>