| 123456789101112131415161718192021222324252627282930313233 |
- <?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.KwcContractProxyMapper">
- <resultMap id="BaseResultMap" type="com.sckw.contract.model.KwcContractProxy">
- <!--@mbg.generated-->
- <!--@Table kwc_contract_proxy-->
- <id column="id" jdbcType="BIGINT" property="id" />
- <result column="ent_id" jdbcType="BIGINT" property="entId" />
- <result column="contract_no" jdbcType="VARCHAR" property="contractNo" />
- <result column="name" jdbcType="VARCHAR" property="name" />
- <result column="supply_id" jdbcType="BIGINT" property="supplyId" />
- <result column="proxy_id" jdbcType="BIGINT" property="proxyId" />
- <result column="sign_time" jdbcType="TIMESTAMP" property="signTime" />
- <result column="start_time" jdbcType="TIMESTAMP" property="startTime" />
- <result column="end_time" jdbcType="TIMESTAMP" property="endTime" />
- <result column="amount" jdbcType="DECIMAL" property="amount" />
- <result column="performed_amount" jdbcType="DECIMAL" property="performedAmount" />
- <result column="sign_file" jdbcType="VARCHAR" property="signFile" />
- <result column="remark" jdbcType="VARCHAR" property="remark" />
- <result column="status" jdbcType="INTEGER" property="status" />
- <result column="create_by" jdbcType="BIGINT" property="createBy" />
- <result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
- <result column="update_by" jdbcType="BIGINT" property="updateBy" />
- <result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
- <result column="del_flag" jdbcType="INTEGER" property="delFlag" />
- </resultMap>
- <sql id="Base_Column_List">
- <!--@mbg.generated-->
- id, ent_id, contract_no, `name`, supply_id, proxy_id, sign_time, start_time, end_time,
- amount, performed_amount, sign_file, remark, `status`, create_by, create_time, update_by,
- update_time, del_flag
- </sql>
- </mapper>
|