<?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.PatSpeciallistCategoryMapper">
|
|
<resultMap type="com.smartor.domain.PatSpeciallistCategory" id="PatSpeciallistCategoryResult">
|
<result property="id" column="id"/>
|
<result property="name" column="name"/>
|
<result property="seqno" column="seqno"/>
|
<result property="pid" column="pid"/>
|
<result property="guid" column="guid"/>
|
<result property="orgid" column="orgid"/>
|
<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"/>
|
</resultMap>
|
|
<sql id="selectPatSpeciallistCategoryVo">
|
select id,
|
name,
|
seqno,
|
pid,
|
guid,
|
orgid,
|
del_flag,
|
create_by,
|
create_time,
|
update_by,
|
update_time
|
from pat_speciallist_category
|
</sql>
|
|
<select id="selectPatSpeciallistCategoryList" parameterType="com.smartor.domain.PatSpeciallistCategory"
|
resultMap="PatSpeciallistCategoryResult">
|
<include refid="selectPatSpeciallistCategoryVo"/>
|
<where>
|
<if test="name != null and name != ''">and name like concat('%', #{name}, '%')</if>
|
<if test="seqno != null ">and seqno = #{seqno}</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>
|
</where>
|
</select>
|
|
<select id="selectPatSpeciallistCategoryById" parameterType="Long" resultMap="PatSpeciallistCategoryResult">
|
<include refid="selectPatSpeciallistCategoryVo"/>
|
where id = #{id}
|
</select>
|
|
<insert id="insertPatSpeciallistCategory" parameterType="com.smartor.domain.PatSpeciallistCategory"
|
useGeneratedKeys="true" keyProperty="id">
|
insert into pat_speciallist_category
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
<if test="name != null">name,</if>
|
<if test="seqno != null">seqno,</if>
|
<if test="pid != null">pid,</if>
|
<if test="guid != null">guid,</if>
|
<if test="orgid != null">orgid,</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>
|
</trim>
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
<if test="name != null">#{name},</if>
|
<if test="seqno != null">#{seqno},</if>
|
<if test="pid != null">#{pid},</if>
|
<if test="guid != null">#{guid},</if>
|
<if test="orgid != null">#{orgid},</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>
|
</trim>
|
</insert>
|
|
<update id="updatePatSpeciallistCategory" parameterType="com.smartor.domain.PatSpeciallistCategory">
|
update pat_speciallist_category
|
<trim prefix="SET" suffixOverrides=",">
|
<if test="name != null">name = #{name},</if>
|
<if test="seqno != null">seqno = #{seqno},</if>
|
<if test="pid != null">pid = #{pid},</if>
|
<if test="guid != null">guid = #{guid},</if>
|
<if test="orgid != null">orgid = #{orgid},</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>
|
</trim>
|
where id = #{id}
|
</update>
|
|
<delete id="deletePatSpeciallistCategoryById" parameterType="Long">
|
delete
|
from pat_speciallist_category
|
where id = #{id}
|
</delete>
|
|
<delete id="deletePatSpeciallistCategoryByIds" parameterType="String">
|
delete from pat_speciallist_category where id in
|
<foreach item="id" collection="array" open="(" separator="," close=")">
|
#{id}
|
</foreach>
|
</delete>
|
</mapper>
|