package com.sckw.freight.model.vo.response; import io.swagger.v3.oas.annotations.media.Schema; 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 @Schema(description = "运单信息") public class ResponseKllOrderTask { private static final long serialVersionUID = 1L; /** * 运单ID */ @Schema(description = "运单ID") private Integer id; /** * 运单号 */ @Schema(description = "运单号") private String taskNo; /** * 订单ID */ @Schema(description = "物流订单ID") private Integer orderId; /** * 物流公司ID */ // @ApiModelProperty(value = "物流公司ID") // private Integer logisticId; /** * 卡车ID */ //private Integer truckId; /** * 卡车车牌 */ @Schema(description = "卡车车牌") private String truckLicensePlate; /** * 目标载重(货+车) */ //private BigDecimal targetLoad; /** * 装载重量/预估装载(货) */ //private BigDecimal loaderWeight; /** * 0:等待进入厂区 * 1:等待首次称重 * 2:等待装货 * 3:等待二次称重 * 4:等待出厂 * 5:已出厂 */ //private Integer truckState; /** * 卡车司机 */ // @ApiModelProperty(value = "卡车司机") // private Integer driverId; /** * 卡车司机名 */ @Schema(description = "卡车司机名") private String driverName; /** * 卡车司机电话 */ @Schema(description = "卡车司机电话") private String driverPhone; /** * 卡车司机身份正 */ //private String driverIdcard; /** * 进厂记录 */ //private Integer checkinReleaseId; /** * 出厂记录 */ //private Integer checkoutReleaseId; /** * 荷载重量 */ //private BigDecimal licenseWeight; /** * 皮重 */ //private BigDecimal tareWeight; /** * 首次称重 */ @Schema(description = "装货量") private BigDecimal firstWeight; /** * 首次称重时间 */ //private LocalDateTime firstWeightTime; /** * 二次称重 */ @Schema(description = "卸货量") private BigDecimal secondWeight; }