|
@@ -0,0 +1,164 @@
|
|
|
+<?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.yonge.cooleshow.biz.dal.dao.ContractTemplateDao">
|
|
|
+
|
|
|
+ <resultMap type="com.yonge.cooleshow.biz.dal.entity.ContractTemplate"
|
|
|
+ id="BaseResultMap">
|
|
|
+ <result column="id_" property="id" />
|
|
|
+ <result column="name_" property="name" />
|
|
|
+ <result column="type_" property="type" />
|
|
|
+ <result column="contract_template_content_" property="contractTemplateContent" />
|
|
|
+ <result column="origanal_file_url_" property="origanalFileUrl" />
|
|
|
+ <result column="contract_no_" property="contractNo" />
|
|
|
+ <result column="status_" property="status" />
|
|
|
+ <result column="version_" property="version" />
|
|
|
+ <result column="modify_by_" property="modifyBy" />
|
|
|
+ <result column="update_time_" property="updateTime" />
|
|
|
+ <result column="create_time_" property="createTime" />
|
|
|
+ <result column="owner_" property="owner" />
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+ <resultMap type="com.yonge.cooleshow.biz.dal.dto.ContractTemplateDto"
|
|
|
+ id="ContractTemplateDto">
|
|
|
+ <result column="latest_operator_" property="latestOperator" />
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+ <!-- 根据主键查询一条记录 -->
|
|
|
+ <select id="get" resultMap="BaseResultMap">
|
|
|
+ SELECT * FROM contract_template WHERE id_ = #{id}
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <!-- 全查询 -->
|
|
|
+ <select id="findAll" resultMap="BaseResultMap">
|
|
|
+ SELECT * FROM contract_template ORDER BY id_
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <!-- 向数据库增加一条记录 -->
|
|
|
+ <insert id="insert" parameterType="com.yonge.cooleshow.biz.dal.entity.ContractTemplate"
|
|
|
+ useGeneratedKeys="true" keyColumn="id" keyProperty="id">
|
|
|
+ INSERT INTO
|
|
|
+ contract_template
|
|
|
+ (id_,name_,type_,contract_template_content_,origanal_file_url_,contract_no_,status_,version_,modify_by_,update_time_,create_time_,owner_)
|
|
|
+ VALUES(#{id},#{name},#{type},#{contractTemplateContent},#{origanalFileUrl},#{contractNo},#{status},#{version},#{modifyBy},#{updateTime},#{createTime},#{owner})
|
|
|
+ </insert>
|
|
|
+
|
|
|
+ <!-- 根据主键查询一条记录 -->
|
|
|
+ <update id="update" parameterType="com.yonge.cooleshow.biz.dal.entity.ContractTemplate">
|
|
|
+ UPDATE contract_template
|
|
|
+ <set>
|
|
|
+ <if test="contractTemplateContent != null">
|
|
|
+ contract_template_content_ = #{contractTemplateContent},
|
|
|
+ </if>
|
|
|
+ <if test="status != null">
|
|
|
+ status_ = #{status},
|
|
|
+ </if>
|
|
|
+ <if test="origanalFileUrl != null">
|
|
|
+ origanal_file_url_ = #{origanalFileUrl},
|
|
|
+ </if>
|
|
|
+ <if test="id != null">
|
|
|
+ id_ = #{id},
|
|
|
+ </if>
|
|
|
+ <if test="owner != null">
|
|
|
+ owner_ = #{owner},
|
|
|
+ </if>
|
|
|
+ <if test="updateTime != null">
|
|
|
+ update_time_ = #{updateTime},
|
|
|
+ </if>
|
|
|
+ <if test="version != null">
|
|
|
+ version_ = #{version},
|
|
|
+ </if>
|
|
|
+ <if test="modifyBy != null">
|
|
|
+ modify_by_ = #{modifyBy},
|
|
|
+ </if>
|
|
|
+ <if test="type != null">
|
|
|
+ type_ = #{type},
|
|
|
+ </if>
|
|
|
+ <if test="contractNo != null">
|
|
|
+ contract_no_ = #{contractNo},
|
|
|
+ </if>
|
|
|
+ <if test="name != null">
|
|
|
+ name_ = #{name},
|
|
|
+ </if>
|
|
|
+ <if test="createTime != null">
|
|
|
+ create_time_ = #{createTime},
|
|
|
+ </if>
|
|
|
+ </set>
|
|
|
+ WHERE id_ = #{id}
|
|
|
+ </update>
|
|
|
+
|
|
|
+ <!-- 根据主键删除一条记录 -->
|
|
|
+ <delete id="delete">
|
|
|
+ DELETE FROM contract_template WHERE id_ = #{id}
|
|
|
+ </delete>
|
|
|
+
|
|
|
+ <!-- 分页查询 -->
|
|
|
+ <select id="queryPage" resultMap="BaseResultMap" parameterType="map">
|
|
|
+ SELECT * FROM contract_template ORDER BY id_
|
|
|
+ <include refid="global.limit" />
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <!-- 查询当前表的总记录数 -->
|
|
|
+ <select id="queryCount" resultType="int">
|
|
|
+ SELECT COUNT(*) FROM contract_template
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <!-- 分页查询 -->
|
|
|
+ <select id="queryPageList" resultMap="ContractTemplateDto"
|
|
|
+ parameterType="map">
|
|
|
+ SELECT tct.*,u.real_name_ latest_operator_ FROM contract_template tct left join sys_user u on tct.modify_by_ = u.id_
|
|
|
+ <where>
|
|
|
+ <if test="status != null">
|
|
|
+ and tct.status_ = #{status}
|
|
|
+ </if>
|
|
|
+ <if test="type != null">
|
|
|
+ and tct.type_ = #{type}
|
|
|
+ </if>
|
|
|
+ <if test="owner != null">
|
|
|
+ and tct.owner_ = #{owner}
|
|
|
+ </if>
|
|
|
+ </where>
|
|
|
+ ORDER BY id_
|
|
|
+ <include refid="global.limit" />
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <!-- 查询当前表的总记录数 -->
|
|
|
+ <select id="queryCount" resultType="int">
|
|
|
+ SELECT COUNT(tct.id_) FROM contract_template tct
|
|
|
+ <where>
|
|
|
+ <if test="status != null">
|
|
|
+ and tct.status_ = #{status}
|
|
|
+ </if>
|
|
|
+ <if test="type != null">
|
|
|
+ and tct.type_ = #{type}
|
|
|
+ </if>
|
|
|
+ <if test="owner != null">
|
|
|
+ and tct.owner_ = #{owner}
|
|
|
+ </if>
|
|
|
+ </where>
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <select id="queryLatestContractTemplate" resultMap="BaseResultMap" parameterType="map">
|
|
|
+ SELECT * FROM contract_template where status_ = 1
|
|
|
+ <if test="type != null">
|
|
|
+ and type_ = #{type}
|
|
|
+ </if>
|
|
|
+ <if test="owner != null">
|
|
|
+ and owner_ = #{owner}
|
|
|
+ </if>
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <update id="disableContract" parameterType="map">
|
|
|
+ update contract_template set status_ = 0 where status_ = 1
|
|
|
+ <if test="type != null">
|
|
|
+ and type_ = #{type}
|
|
|
+ </if>
|
|
|
+ <if test="owner != null">
|
|
|
+ and owner_ = #{owner}
|
|
|
+ </if>
|
|
|
+ </update>
|
|
|
+
|
|
|
+ <select id="queryMaxVersion" resultType="java.lang.Integer">
|
|
|
+ SELECT max(version_) FROM contract_template
|
|
|
+ </select>
|
|
|
+</mapper>
|