| 1234567891011121314151617181920212223242526272829303132 |
- <?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.KwcContractLogisticsUnitMapper">
- <resultMap id="BaseResultMap" type="com.sckw.contract.model.entity.KwcContractLogisticsUnit">
- <id property="id" column="id" jdbcType="BIGINT"/>
- <result property="contract_id" column="contract_id" jdbcType="BIGINT"/>
- <result property="unit_type" column="unit_type" jdbcType="INTEGER"/>
- <result property="ent_id" column="ent_id" jdbcType="BIGINT"/>
- <result property="firm_name" column="firm_name" jdbcType="VARCHAR"/>
- <result property="contacts" column="contacts" jdbcType="VARCHAR"/>
- <result property="phone" column="phone" jdbcType="VARCHAR"/>
- <result property="sign_phone" column="sign_phone" jdbcType="VARCHAR"/>
- <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,contract_id,unit_type,
- ent_id,firm_name,contacts,
- phone,sign_phone,remark,
- status,create_by,create_time,
- update_by,update_time,del_flag
- </sql>
- </mapper>
|