| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?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.sckw.contract.dao.KwcContractLogisticsMapper">
- <resultMap id="BaseResultMap" type="com.sckw.contract.model.entity.KwcContractLogistics">
- <id property="id" column="id" jdbcType="BIGINT"/>
- <result property="ent_id" column="ent_id" jdbcType="BIGINT"/>
- <result property="contract_no" column="contract_no" jdbcType="VARCHAR"/>
- <result property="name" column="name" jdbcType="VARCHAR"/>
- <result property="signing_way" column="signing_way" jdbcType="VARCHAR"/>
- <result property="charging" column="charging" jdbcType="BIGINT"/>
- <result property="trading" column="trading" jdbcType="BIGINT"/>
- <result property="start_time" column="start_time" jdbcType="TIMESTAMP"/>
- <result property="end_time" column="end_time" jdbcType="TIMESTAMP"/>
- <result property="amount" column="amount" jdbcType="DECIMAL"/>
- <result property="performed_amount" column="performed_amount" jdbcType="DECIMAL"/>
- <result property="signing_url" column="signing_url" jdbcType="VARCHAR"/>
- <result property="signed_url" column="signed_url" jdbcType="VARCHAR"/>
- <result property="signing_no" column="signing_no" jdbcType="VARCHAR"/>
- <result property="contract_pid" column="contract_pid" jdbcType="BIGINT"/>
- <result property="remark" column="remark" jdbcType="VARCHAR"/>
- <result property="status" column="status" jdbcType="INTEGER"/>
- <result property="create_by" column="create_by" jdbcType="BIGINT"/>
- <result property="create_time" column="create_time" jdbcType="TIMESTAMP"/>
- <result property="update_by" column="update_by" jdbcType="BIGINT"/>
- <result property="update_time" column="update_time" jdbcType="TIMESTAMP"/>
- <result property="del_flag" column="del_flag" jdbcType="INTEGER"/>
- </resultMap>
- <sql id="Base_Column_List">
- id,ent_id,contract_no,
- name,signing_way,charging,
- trading,start_time,end_time,
- amount,performed_amount,signing_url,
- signed_url,signing_no,contract_pid,
- remark,status,create_by,
- create_time,update_by,update_time,
- del_flag
- </sql>
- <select id="queryList" resultType="com.sckw.contract.model.vo.res.QueryListResVo">
- select distinct a.*
- from kwc_contract_logistics a
- left join kwc_contract_logistics_unit b on a.id = b.contract_id
- where a.del_flag = 0
- and b.del_flag = 0
- <if test="entType != null">
- and b.unit_type = #{entType}
- </if>
- <if test="entId != null">
- and b.ent_id = #{entId}
- </if>
- <if test="startTime != null">
- and a.create_time >= #{startTime}
- </if>
- <if test="endTime != null">
- and a.create_time <= #{endTime}
- </if>
- <if test="status != null">
- and a.status = #{status}
- </if>
- <if test="keywords != null and keywords != ''">
- and (b.firm_name like concat('%', #{keywords}, '%') or b.contacts like concat('%', #{keywords}, '%') or b.phone like concat('%', #{keywords}, '%'))
- </if>
- <if test="idList != null and idList.size() > 0">
- and a.id in
- <foreach collection="idList" open="(" close=")" separator="," item="item">
- #{item}
- </foreach>
- </if>
- </select>
- </mapper>
|