liusheng
10 小时以前 e180e3a496d6f29d3a3b34016400de9d997c6bd9
smartor/src/main/resources/mapper/smartor/SvyLibTopicCategoryMapper.xml
@@ -17,6 +17,7 @@
        <result property="updateTime" column="update_time"/>
        <result property="orgid" column="orgid"/>
        <result property="seqno" column="seqno"/>
        <result property="type" column="type"/>
    </resultMap>
    <sql id="selectSvyLibScriptCategoryVo">
@@ -31,6 +32,7 @@
               update_by,
               update_time,
               seqno,
               type,
               orgid
        from svy_lib_script_category
    </sql>
@@ -46,6 +48,7 @@
            <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>
            <if test="type != null  and type != ''">and type like concat('%', #{type}, '%')</if>
        order by seqno asc
    </select>
@@ -69,6 +72,7 @@
            <if test="updateBy != null">update_by,</if>
            <if test="updateTime != null">update_time,</if>
            <if test="orgid != null">orgid,</if>
            <if test="type != null">type,</if>
        </trim>
        <trim prefix="values (" suffix=")" suffixOverrides=",">
            <if test="name != null">#{name},</if>
@@ -82,6 +86,7 @@
            <if test="updateBy != null">#{updateBy},</if>
            <if test="updateTime != null">#{updateTime},</if>
            <if test="orgid != null">#{orgid},</if>
            <if test="type != null">#{type},</if>
        </trim>
    </insert>
@@ -99,6 +104,7 @@
            <if test="updateBy != null">update_by = #{updateBy},</if>
            <if test="updateTime != null">update_time = #{updateTime},</if>
            <if test="orgid != null">orgid = #{orgid},</if>
            <if test="type != null">type = #{type},</if>
        </trim>
        where id = #{id}
    </update>
@@ -120,7 +126,7 @@
    <select id="selectSeqMax" resultType="integer">
        select max(seqno) seqno
        from ivr_liba_template_assort
        from svy_lib_script_category
    </select>
</mapper>