KwcContractTradeGoodsMapper.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132
  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.KwcContractTradeGoodsMapper">
  6. <resultMap id="BaseResultMap" type="com.sckw.contract.model.entity.KwcContractTradeGoods">
  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="remark" column="remark" jdbcType="VARCHAR"/>
  16. <result property="status" column="status" jdbcType="INTEGER"/>
  17. <result property="create_by" column="create_by" jdbcType="BIGINT"/>
  18. <result property="create_time" column="create_time" jdbcType="TIMESTAMP"/>
  19. <result property="update_by" column="update_by" jdbcType="BIGINT"/>
  20. <result property="update_time" column="update_time" jdbcType="TIMESTAMP"/>
  21. <result property="del_flag" column="del_flag" jdbcType="INTEGER"/>
  22. </resultMap>
  23. <sql id="Base_Column_List">
  24. id,contract_id,goods_id,
  25. sku_id,amount,unit,
  26. price,performed_amount,remark,
  27. status,create_by,create_time,
  28. update_by,update_time,del_flag
  29. </sql>
  30. </mapper>