KwcContractLogisticsMapper.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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.KwcContractLogisticsMapper">
  6. <resultMap id="BaseResultMap" type="com.sckw.contract.model.entity.KwcContractLogistics">
  7. <id property="id" column="id" jdbcType="BIGINT"/>
  8. <result property="ent_id" column="ent_id" jdbcType="BIGINT"/>
  9. <result property="contract_no" column="contract_no" jdbcType="VARCHAR"/>
  10. <result property="name" column="name" jdbcType="VARCHAR"/>
  11. <result property="signing_way" column="signing_way" jdbcType="VARCHAR"/>
  12. <result property="charging" column="charging" jdbcType="BIGINT"/>
  13. <result property="trading" column="trading" jdbcType="BIGINT"/>
  14. <result property="start_time" column="start_time" jdbcType="TIMESTAMP"/>
  15. <result property="end_time" column="end_time" jdbcType="TIMESTAMP"/>
  16. <result property="amount" column="amount" jdbcType="DECIMAL"/>
  17. <result property="performed_amount" column="performed_amount" jdbcType="DECIMAL"/>
  18. <result property="signing_url" column="signing_url" jdbcType="VARCHAR"/>
  19. <result property="signed_url" column="signed_url" jdbcType="VARCHAR"/>
  20. <result property="signing_no" column="signing_no" jdbcType="VARCHAR"/>
  21. <result property="contract_pid" column="contract_pid" jdbcType="BIGINT"/>
  22. <result property="remark" column="remark" jdbcType="VARCHAR"/>
  23. <result property="status" column="status" jdbcType="INTEGER"/>
  24. <result property="create_by" column="create_by" jdbcType="BIGINT"/>
  25. <result property="create_time" column="create_time" jdbcType="TIMESTAMP"/>
  26. <result property="update_by" column="update_by" jdbcType="BIGINT"/>
  27. <result property="update_time" column="update_time" jdbcType="TIMESTAMP"/>
  28. <result property="del_flag" column="del_flag" jdbcType="INTEGER"/>
  29. </resultMap>
  30. <sql id="Base_Column_List">
  31. id,ent_id,contract_no,
  32. name,signing_way,charging,
  33. trading,start_time,end_time,
  34. amount,performed_amount,signing_url,
  35. signed_url,signing_no,contract_pid,
  36. remark,status,create_by,
  37. create_time,update_by,update_time,
  38. del_flag
  39. </sql>
  40. </mapper>