<?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>
|