KwcContractLogisticsGoodsMapper.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="com.sckw.contract.dao.KwcContractLogisticsGoodsMapper">
  6. <resultMap id="BaseResultMap" type="com.sckw.contract.model.entity.KwcContractLogisticsGoods">
  7. <id property="id" column="id" jdbcType="BIGINT"/>
  8. <result property="contract_id" column="contract_id" jdbcType="BIGINT"/>
  9. <result property="goods_id" column="goods_id" jdbcType="BIGINT"/>
  10. <result property="sku_id" column="sku_id" jdbcType="BIGINT"/>
  11. <result property="amount" column="amount" jdbcType="DECIMAL"/>
  12. <result property="unit" column="unit" jdbcType="VARCHAR"/>
  13. <result property="price" column="price" jdbcType="DECIMAL"/>
  14. <result property="performed_amount" column="performed_amount" jdbcType="DECIMAL"/>
  15. <result property="loss" column="loss" jdbcType="DECIMAL"/>
  16. <result property="loss_unit" column="loss_unit" jdbcType="VARCHAR"/>
  17. <result property="deficit_price" column="deficit_price" jdbcType="DECIMAL"/>
  18. <result property="deficit_unit" column="deficit_unit" jdbcType="VARCHAR"/>
  19. <result property="remark" column="remark" jdbcType="VARCHAR"/>
  20. <result property="status" column="status" jdbcType="INTEGER"/>
  21. <result property="create_by" column="create_by" jdbcType="BIGINT"/>
  22. <result property="create_time" column="create_time" jdbcType="TIMESTAMP"/>
  23. <result property="update_by" column="update_by" jdbcType="BIGINT"/>
  24. <result property="update_time" column="update_time" jdbcType="TIMESTAMP"/>
  25. <result property="del_flag" column="del_flag" jdbcType="INTEGER"/>
  26. </resultMap>
  27. <sql id="Base_Column_List">
  28. id,contract_id,goods_id,
  29. sku_id,amount,unit,
  30. price,performed_amount,loss,
  31. loss_unit,deficit_price,deficit_unit,
  32. remark,status,create_by,
  33. create_time,update_by,update_time,
  34. del_flag
  35. </sql>
  36. </mapper>