| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- package com.sckw.freight.model.vo.response;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import java.math.BigDecimal;
- /**
- * @BelongsProject: Freight-Settlement-Backend
- * @BelongsPackage: com.sckw.freight.model.vo.response
- * @Author: xj
- * @CreateTime: 2025-01-10 14:49
- * @Description: 运单信息
- * @Version: 1.0
- */
- @Data
- @ApiModel(value = "运单信息")
- public class ResponseKllOrderTask {
- private static final long serialVersionUID = 1L;
- /**
- * 运单ID
- */
- @ApiModelProperty(value = "运单ID")
- private Integer id;
- /**
- * 运单号
- */
- @ApiModelProperty(value = "运单号")
- private String taskNo;
- /**
- * 订单ID
- */
- @ApiModelProperty(value = "物流订单ID")
- private Integer orderId;
- /**
- * 物流公司ID
- */
- // @ApiModelProperty(value = "物流公司ID")
- // private Integer logisticId;
- /**
- * 卡车ID
- */
- //private Integer truckId;
- /**
- * 卡车车牌
- */
- @ApiModelProperty(value = "卡车车牌")
- private String truckLicensePlate;
- /**
- * 目标载重(货+车)
- */
- //private BigDecimal targetLoad;
- /**
- * 装载重量/预估装载(货)
- */
- //private BigDecimal loaderWeight;
- /**
- * 0:等待进入厂区
- * 1:等待首次称重
- * 2:等待装货
- * 3:等待二次称重
- * 4:等待出厂
- * 5:已出厂
- */
- //private Integer truckState;
- /**
- * 卡车司机
- */
- // @ApiModelProperty(value = "卡车司机")
- // private Integer driverId;
- /**
- * 卡车司机名
- */
- @ApiModelProperty(value = "卡车司机名")
- private String driverName;
- /**
- * 卡车司机电话
- */
- @ApiModelProperty(value = "卡车司机电话")
- private String driverPhone;
- /**
- * 卡车司机身份正
- */
- //private String driverIdcard;
- /**
- * 进厂记录
- */
- //private Integer checkinReleaseId;
- /**
- * 出厂记录
- */
- //private Integer checkoutReleaseId;
- /**
- * 荷载重量
- */
- //private BigDecimal licenseWeight;
- /**
- * 皮重
- */
- //private BigDecimal tareWeight;
- /**
- * 首次称重
- */
- @ApiModelProperty(value = "装货量")
- private BigDecimal firstWeight;
- /**
- * 首次称重时间
- */
- //private LocalDateTime firstWeightTime;
- /**
- * 二次称重
- */
- @ApiModelProperty(value = "卸货量")
- private BigDecimal secondWeight;
- }
|