ResponseKllOrderTask.java 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. package com.sckw.freight.model.vo.response;
  2. import io.swagger.annotations.ApiModel;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import lombok.Data;
  5. import java.math.BigDecimal;
  6. /**
  7. * @BelongsProject: Freight-Settlement-Backend
  8. * @BelongsPackage: com.sckw.freight.model.vo.response
  9. * @Author: xj
  10. * @CreateTime: 2025-01-10 14:49
  11. * @Description: 运单信息
  12. * @Version: 1.0
  13. */
  14. @Data
  15. @ApiModel(value = "运单信息")
  16. public class ResponseKllOrderTask {
  17. private static final long serialVersionUID = 1L;
  18. /**
  19. * 运单ID
  20. */
  21. @ApiModelProperty(value = "运单ID")
  22. private Integer id;
  23. /**
  24. * 运单号
  25. */
  26. @ApiModelProperty(value = "运单号")
  27. private String taskNo;
  28. /**
  29. * 订单ID
  30. */
  31. @ApiModelProperty(value = "物流订单ID")
  32. private Integer orderId;
  33. /**
  34. * 物流公司ID
  35. */
  36. // @ApiModelProperty(value = "物流公司ID")
  37. // private Integer logisticId;
  38. /**
  39. * 卡车ID
  40. */
  41. //private Integer truckId;
  42. /**
  43. * 卡车车牌
  44. */
  45. @ApiModelProperty(value = "卡车车牌")
  46. private String truckLicensePlate;
  47. /**
  48. * 目标载重(货+车)
  49. */
  50. //private BigDecimal targetLoad;
  51. /**
  52. * 装载重量/预估装载(货)
  53. */
  54. //private BigDecimal loaderWeight;
  55. /**
  56. * 0:等待进入厂区
  57. * 1:等待首次称重
  58. * 2:等待装货
  59. * 3:等待二次称重
  60. * 4:等待出厂
  61. * 5:已出厂
  62. */
  63. //private Integer truckState;
  64. /**
  65. * 卡车司机
  66. */
  67. // @ApiModelProperty(value = "卡车司机")
  68. // private Integer driverId;
  69. /**
  70. * 卡车司机名
  71. */
  72. @ApiModelProperty(value = "卡车司机名")
  73. private String driverName;
  74. /**
  75. * 卡车司机电话
  76. */
  77. @ApiModelProperty(value = "卡车司机电话")
  78. private String driverPhone;
  79. /**
  80. * 卡车司机身份正
  81. */
  82. //private String driverIdcard;
  83. /**
  84. * 进厂记录
  85. */
  86. //private Integer checkinReleaseId;
  87. /**
  88. * 出厂记录
  89. */
  90. //private Integer checkoutReleaseId;
  91. /**
  92. * 荷载重量
  93. */
  94. //private BigDecimal licenseWeight;
  95. /**
  96. * 皮重
  97. */
  98. //private BigDecimal tareWeight;
  99. /**
  100. * 首次称重
  101. */
  102. @ApiModelProperty(value = "装货量")
  103. private BigDecimal firstWeight;
  104. /**
  105. * 首次称重时间
  106. */
  107. //private LocalDateTime firstWeightTime;
  108. /**
  109. * 二次称重
  110. */
  111. @ApiModelProperty(value = "卸货量")
  112. private BigDecimal secondWeight;
  113. }