KwtLogisticsOrderMapper.xml 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.sckw.transport.dao.KwtLogisticsOrderMapper">
  4. <resultMap id="BaseResultMap" type="com.sckw.transport.model.KwtLogisticsOrder">
  5. <id column="id" jdbcType="BIGINT" property="id" />
  6. <result column="ent_id" jdbcType="BIGINT" property="entId" />
  7. <result column="t_order_id" jdbcType="BIGINT" property="tOrderId" />
  8. <result column="t_order_no" jdbcType="VARCHAR" property="tOrderNo" />
  9. <result column="l_order_no" jdbcType="VARCHAR" property="lOrderNo" />
  10. <result column="pid" jdbcType="BIGINT" property="pid" />
  11. <result column="settlement_cycle" jdbcType="BIGINT" property="settlementCycle" />
  12. <result column="price" jdbcType="DECIMAL" property="price" />
  13. <result column="price_type" jdbcType="BIGINT" property="priceType" />
  14. <result column="amount" jdbcType="DECIMAL" property="amount" />
  15. <result column="unit" jdbcType="VARCHAR" property="unit" />
  16. <result column="loss" jdbcType="DECIMAL" property="loss" />
  17. <result column="loss_unit" jdbcType="VARCHAR" property="lossUnit" />
  18. <result column="goods_price" jdbcType="DECIMAL" property="goodsPrice" />
  19. <result column="goods_price_unit" jdbcType="VARCHAR" property="goodsPriceUnit" />
  20. <result column="start_time" jdbcType="TIMESTAMP" property="startTime" />
  21. <result column="ent_time" jdbcType="TIMESTAMP" property="entTime" />
  22. <result column="subcontract_amount" jdbcType="DECIMAL" property="subcontractAmount" />
  23. <result column="entrust_amount" jdbcType="DECIMAL" property="entrustAmount" />
  24. <result column="unload_amount" jdbcType="DECIMAL" property="unloadAmount" />
  25. <result column="load_amount" jdbcType="DECIMAL" property="loadAmount" />
  26. <result column="ignore_amount" jdbcType="DECIMAL" property="ignoreAmount" />
  27. <result column="deficit_amount" jdbcType="DECIMAL" property="deficitAmount" />
  28. <result column="deficit_price" jdbcType="DECIMAL" property="deficitPrice" />
  29. <result column="payment" jdbcType="BIGINT" property="payment" />
  30. <result column="tax_rate" jdbcType="DECIMAL" property="taxRate" />
  31. <result column="remark" jdbcType="VARCHAR" property="remark" />
  32. <result column="status" jdbcType="INTEGER" property="status" />
  33. <result column="create_by" jdbcType="BIGINT" property="createBy" />
  34. <result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
  35. <result column="update_by" jdbcType="BIGINT" property="updateBy" />
  36. <result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
  37. <result column="del_flag" jdbcType="INTEGER" property="delFlag" />
  38. </resultMap>
  39. <sql id="Base_Column_List">
  40. id, ent_id, t_order_id, t_order_no, l_order_no, pid, settlement_cycle, price, price_type,
  41. amount, unit, loss, loss_unit, goods_price, goods_price_unit, start_time, ent_time,
  42. subcontract_amount, entrust_amount, unload_amount, load_amount, ignore_amount, deficit_amount,
  43. deficit_price, payment, tax_rate, remark, `status`, create_by, create_time, update_by,
  44. update_time, del_flag
  45. </sql>
  46. </mapper>