111 lines
5.8 KiB
XML
111 lines
5.8 KiB
XML
|
|
<?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.ruoyi.front.mapper.ContractTemplateMapper">
|
||
|
|
|
||
|
|
<resultMap type="ContractTemplate" id="ContractTemplateResult">
|
||
|
|
<result property="id" column="id" />
|
||
|
|
<result property="type" column="type" />
|
||
|
|
<result property="title" column="title" />
|
||
|
|
<result property="introduction" column="introduction" />
|
||
|
|
<result property="content" column="content" />
|
||
|
|
<result property="hits" column="hits" />
|
||
|
|
<result property="enclosureUrl" column="enclosure_url" />
|
||
|
|
<result property="status" column="status" />
|
||
|
|
<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="remark" column="remark" />
|
||
|
|
</resultMap>
|
||
|
|
|
||
|
|
<sql id="selectContractTemplateVo">
|
||
|
|
select id, type, title, introduction, content, hits, enclosure_url, status, del_flag, create_by, create_time, update_by, update_time, remark from contract_template
|
||
|
|
</sql>
|
||
|
|
|
||
|
|
<select id="selectContractTemplateList" parameterType="ContractTemplate" resultMap="ContractTemplateResult">
|
||
|
|
<include refid="selectContractTemplateVo"/>
|
||
|
|
<where>
|
||
|
|
<if test="type != null and type != ''"> and type = #{type}</if>
|
||
|
|
<if test="title != null and title != ''"> and title = #{title}</if>
|
||
|
|
<if test="introduction != null and introduction != ''"> and introduction = #{introduction}</if>
|
||
|
|
<if test="content != null and content != ''"> and content = #{content}</if>
|
||
|
|
<if test="hits != null "> and hits = #{hits}</if>
|
||
|
|
<if test="enclosureUrl != null and enclosureUrl != ''"> and enclosure_url = #{enclosureUrl}</if>
|
||
|
|
<if test="status != null and status != ''"> and status = #{status}</if>
|
||
|
|
</where>
|
||
|
|
</select>
|
||
|
|
|
||
|
|
<select id="selectContractTemplateById" parameterType="Long" resultMap="ContractTemplateResult">
|
||
|
|
<include refid="selectContractTemplateVo"/>
|
||
|
|
where id = #{id}
|
||
|
|
</select>
|
||
|
|
|
||
|
|
<insert id="insertContractTemplate" parameterType="ContractTemplate" useGeneratedKeys="true" keyProperty="id">
|
||
|
|
insert into contract_template
|
||
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||
|
|
<if test="type != null and type != ''">type,</if>
|
||
|
|
<if test="title != null and title != ''">title,</if>
|
||
|
|
<if test="introduction != null and introduction != ''">introduction,</if>
|
||
|
|
<if test="content != null and content != ''">content,</if>
|
||
|
|
<if test="hits != null">hits,</if>
|
||
|
|
<if test="enclosureUrl != null and enclosureUrl != ''">enclosure_url,</if>
|
||
|
|
<if test="status != null">status,</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="remark != null">remark,</if>
|
||
|
|
</trim>
|
||
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||
|
|
<if test="type != null and type != ''">#{type},</if>
|
||
|
|
<if test="title != null and title != ''">#{title},</if>
|
||
|
|
<if test="introduction != null and introduction != ''">#{introduction},</if>
|
||
|
|
<if test="content != null and content != ''">#{content},</if>
|
||
|
|
<if test="hits != null">#{hits},</if>
|
||
|
|
<if test="enclosureUrl != null and enclosureUrl != ''">#{enclosureUrl},</if>
|
||
|
|
<if test="status != null">#{status},</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="remark != null">#{remark},</if>
|
||
|
|
</trim>
|
||
|
|
</insert>
|
||
|
|
|
||
|
|
<update id="updateContractTemplate" parameterType="ContractTemplate">
|
||
|
|
update contract_template
|
||
|
|
<trim prefix="SET" suffixOverrides=",">
|
||
|
|
<if test="type != null and type != ''">type = #{type},</if>
|
||
|
|
<if test="title != null and title != ''">title = #{title},</if>
|
||
|
|
<if test="introduction != null and introduction != ''">introduction = #{introduction},</if>
|
||
|
|
<if test="content != null and content != ''">content = #{content},</if>
|
||
|
|
<if test="hits != null">hits = #{hits},</if>
|
||
|
|
<if test="enclosureUrl != null and enclosureUrl != ''">enclosure_url = #{enclosureUrl},</if>
|
||
|
|
<if test="status != null">status = #{status},</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="remark != null">remark = #{remark},</if>
|
||
|
|
</trim>
|
||
|
|
where id = #{id}
|
||
|
|
</update>
|
||
|
|
|
||
|
|
<delete id="deleteContractTemplateById" parameterType="Long">
|
||
|
|
delete from contract_template where id = #{id}
|
||
|
|
</delete>
|
||
|
|
|
||
|
|
<delete id="deleteContractTemplateByIds" parameterType="String">
|
||
|
|
delete from contract_template where id in
|
||
|
|
<foreach item="id" collection="array" open="(" separator="," close=")">
|
||
|
|
#{id}
|
||
|
|
</foreach>
|
||
|
|
</delete>
|
||
|
|
|
||
|
|
</mapper>
|