KwmLineCostTramMapper.xml 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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.manage.dao.KwmLineCostTramMapper">
  6. <resultMap id="BaseResultMap" type="com.sckw.manage.model.entity.KwmLineCostTram">
  7. <id property="id" column="id" jdbcType="BIGINT"/>
  8. <result property="loadAddress" column="load_address" jdbcType="VARCHAR"/>
  9. <result property="loadLat" column="load_lat" jdbcType="VARCHAR"/>
  10. <result property="loadLng" column="load_lng" jdbcType="VARCHAR"/>
  11. <result property="unloadAddress" column="unload_address" jdbcType="VARCHAR"/>
  12. <result property="unloadLat" column="unload_lat" jdbcType="VARCHAR"/>
  13. <result property="unloadLng" column="unload_lng" jdbcType="VARCHAR"/>
  14. <result property="transportTime" column="transport_time" jdbcType="INTEGER"/>
  15. <result property="transportMileage" column="transport_mileage" jdbcType="DECIMAL"/>
  16. <result property="transportCost" column="transport_cost" jdbcType="DECIMAL"/>
  17. <result property="consume" column="consume" jdbcType="DECIMAL"/>
  18. <result property="price" column="price" jdbcType="DECIMAL"/>
  19. <result property="consumeTotal" column="consume_total" jdbcType="DECIMAL"/>
  20. <result property="roadBridgeFees" column="road_bridge_fees" jdbcType="DECIMAL"/>
  21. <result property="driverWages" column="driver_wages" jdbcType="DECIMAL"/>
  22. <result property="parkingFee" column="parking_fee" jdbcType="DECIMAL"/>
  23. <result property="other" column="other" jdbcType="DECIMAL"/>
  24. <result property="changeCost" column="change_cost" jdbcType="DECIMAL"/>
  25. <result property="depreciationShare" column="depreciation_share" jdbcType="DECIMAL"/>
  26. <result property="insureShare" column="insure_share" jdbcType="DECIMAL"/>
  27. <result property="maintenanceShare" column="maintenance_share" jdbcType="DECIMAL"/>
  28. <result property="tireShare" column="tire_share" jdbcType="DECIMAL"/>
  29. <result property="weighingFee" column="weighing_fee" jdbcType="DECIMAL"/>
  30. <result property="managementFees" column="management_fees" jdbcType="DECIMAL"/>
  31. <result property="wagesShare" column="wages_share" jdbcType="DECIMAL"/>
  32. <result property="regularCost" column="regular_cost" jdbcType="DECIMAL"/>
  33. <result property="remark" column="remark" jdbcType="VARCHAR"/>
  34. <result property="status" column="status" jdbcType="INTEGER"/>
  35. <result property="createBy" column="create_by" jdbcType="BIGINT"/>
  36. <result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
  37. <result property="updateBy" column="update_by" jdbcType="BIGINT"/>
  38. <result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
  39. <result property="delFlag" column="del_flag" jdbcType="INTEGER"/>
  40. </resultMap>
  41. <sql id="Base_Column_List">
  42. id,load_address,load_lat,
  43. load_lng,unload_address,unload_lat,
  44. unload_lng,transport_time,transport_mileage,
  45. transport_cost,consume,price,
  46. consume_total,road_bridge_fees,driver_wages,
  47. parking_fee,other,change_cost,
  48. depreciation_share,insure_share,maintenance_share,
  49. tire_share,weighing_fee,management_fees,
  50. wages_share,regular_cost,remark,
  51. status,create_by,create_time,
  52. update_by,update_time,del_flag
  53. </sql>
  54. </mapper>