| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?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>
- </mapper>
|