| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?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.KwcContractLogisticsGoodsMapper">
- <resultMap id="BaseResultMap" type="com.sckw.contract.model.entity.KwcContractLogisticsGoods">
- <id property="id" column="id" jdbcType="BIGINT"/>
- <result property="contract_id" column="contract_id" jdbcType="BIGINT"/>
- <result property="goods_id" column="goods_id" jdbcType="BIGINT"/>
- <result property="sku_id" column="sku_id" jdbcType="BIGINT"/>
- <result property="amount" column="amount" jdbcType="DECIMAL"/>
- <result property="unit" column="unit" jdbcType="VARCHAR"/>
- <result property="price" column="price" jdbcType="DECIMAL"/>
- <result property="performed_amount" column="performed_amount" jdbcType="DECIMAL"/>
- <result property="loss" column="loss" jdbcType="DECIMAL"/>
- <result property="loss_unit" column="loss_unit" jdbcType="VARCHAR"/>
- <result property="deficit_price" column="deficit_price" jdbcType="DECIMAL"/>
- <result property="deficit_unit" column="deficit_unit" 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,goods_id,
- sku_id,amount,unit,
- price,performed_amount,loss,
- loss_unit,deficit_price,deficit_unit,
- remark,status,create_by,
- create_time,update_by,update_time,
- del_flag
- </sql>
- </mapper>
|