123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- <?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.ym.mec.biz.dal.dao.TenantContractTemplateDao">
- <resultMap type="com.ym.mec.biz.dal.entity.TenantContractTemplate"
- id="TenantContractTemplate">
- <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" />
- <result column="tenant_id_" property="tenantId" />
- </resultMap>
-
- <resultMap type="com.ym.mec.biz.dal.dto.TenantContractTemplateDto"
- id="TenantContractTemplateDto">
- <result column="latest_operator_" property="latestOperator" />
- </resultMap>
- <!-- 根据主键查询一条记录 -->
- <select id="get" resultMap="TenantContractTemplate">
- SELECT * FROM tenant_contract_template WHERE id_ = #{id}
- </select>
- <!-- 全查询 -->
- <select id="findAll" resultMap="TenantContractTemplate">
- SELECT * FROM tenant_contract_template ORDER BY id_
- </select>
- <!-- 向数据库增加一条记录 -->
- <insert id="insert" parameterType="com.ym.mec.biz.dal.entity.TenantContractTemplate"
- useGeneratedKeys="true" keyColumn="id" keyProperty="id">
- <!-- <selectKey resultClass="int" keyProperty="id" > SELECT SEQ_WSDEFINITION_ID.nextval
- AS ID FROM DUAL </selectKey> -->
- INSERT INTO tenant_contract_template
- (id_,name_,type_,contract_template_content_,origanal_file_url_,contract_no_,status_,version_,modify_by_,update_time_,create_time_,owner_,tenant_id_)
- VALUES(#{id},#{name},#{type},#{contractTemplateContent},#{origanalFileUrl},#{contractNo},#{status},#{version},#{modifyBy},#{updateTime},#{createTime},#{owner},#{tenantId})
- </insert>
- <!-- 根据主键查询一条记录 -->
- <update id="update" parameterType="com.ym.mec.biz.dal.entity.TenantContractTemplate">
- UPDATE tenant_contract_template
- <set>
- <if test="contractTemplateContent != null">
- contract_template_content_ = #{contractTemplateContent},
- </if>
- <if test="status != null">
- status_ = #{status},
- </if>
- <if test="type != null">
- type_ = #{type},
- </if>
- <if test="origanalFileUrl != null">
- origanal_file_url_ = #{origanalFileUrl},
- </if>
- <if test="id != null">
- id_ = #{id},
- </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="contractNo != null">
- contract_no_ = #{contractNo},
- </if>
- <if test="name != null">
- name_ = #{name},
- </if>
- <if test="createTime != null">
- create_time_ = #{createTime},
- </if>
- <if test="owner != null">
- owner_ = #{owner},
- </if>
- </set>
- WHERE id_ = #{id} and tenant_id_ = #{tenantId}
- </update>
- <!-- 根据主键删除一条记录 -->
- <delete id="delete">
- DELETE FROM tenant_contract_template WHERE id_ = #{id}
- </delete>
- <!-- 分页查询 -->
- <select id="queryPageList" resultMap="TenantContractTemplateDto"
- parameterType="map">
- SELECT tct.*,u.real_name_ latest_operator_ FROM tenant_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 tenant_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="TenantContractTemplate" parameterType="map">
- SELECT * FROM tenant_contract_template where type_ = #{type} and owner_ = #{owner} and status_ = 1 and tenant_id_ = #{tenantId}
- </select>
-
- <update id="disableContract" parameterType="map">
- update tenant_contract_template set status_ = 0 where type_ = #{type} and owner_ = #{owner} and status_ = 1 and tenant_id_ = #{tenantId}
- </update>
- </mapper>
|