|
|
@@ -0,0 +1,114 @@
|
|
|
+package com.sckw.transport.model.param;
|
|
|
+
|
|
|
+import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.io.Serial;
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author :chenXiaoFei
|
|
|
+ * @version :1.0
|
|
|
+ * @description : 分页查询运单信息详情响应参数
|
|
|
+ * @create :2025-11-11 20:16:00
|
|
|
+ */
|
|
|
+@Data
|
|
|
+public class WaybillOrderResp implements Serializable {
|
|
|
+ @Serial
|
|
|
+ private static final long serialVersionUID = 7947970154893311217L;
|
|
|
+ /**
|
|
|
+ * 运单id
|
|
|
+ */
|
|
|
+ @Schema(description = "运单id")
|
|
|
+ private String waybillOrderId;
|
|
|
+ /**
|
|
|
+ * 运单号
|
|
|
+ */
|
|
|
+ @Schema(description = "运单号")
|
|
|
+ private String waybillOrderNo;
|
|
|
+ /**
|
|
|
+ * 托运单位id
|
|
|
+ */
|
|
|
+ @Schema(description = "托运单位id")
|
|
|
+ private String consignUnitId;
|
|
|
+ /**
|
|
|
+ * 托运单位名称
|
|
|
+ */
|
|
|
+ @Schema(description = "托运单位名称")
|
|
|
+ private String consignUnitName;
|
|
|
+ /**
|
|
|
+ * 承运单位id
|
|
|
+ */
|
|
|
+ @Schema(description = "承运单位id")
|
|
|
+ private String carriageUnitId;
|
|
|
+ /**
|
|
|
+ * 承运单位名称
|
|
|
+ */
|
|
|
+ @Schema(description = "承运单位名称")
|
|
|
+ private String carriageUnitName;
|
|
|
+ /**
|
|
|
+ * 车牌号
|
|
|
+ */
|
|
|
+ @Schema(description = "车牌号")
|
|
|
+ private String truckNo;
|
|
|
+ /**
|
|
|
+ * 司机名称
|
|
|
+ */
|
|
|
+ @Schema(description = "司机名称")
|
|
|
+ private String driverName;
|
|
|
+ /**
|
|
|
+ * 联系电话
|
|
|
+ */
|
|
|
+ @Schema(description = "联系电话")
|
|
|
+ private String driverPhone;
|
|
|
+ /**
|
|
|
+ * 商品名称
|
|
|
+ */
|
|
|
+ @Schema(description = "商品名称")
|
|
|
+ private String goodsName;
|
|
|
+ /**
|
|
|
+ * 任务量
|
|
|
+ */
|
|
|
+ @Schema(description = "任务量")
|
|
|
+ private Integer taskNum;
|
|
|
+ /**
|
|
|
+ * 装货净重
|
|
|
+ */
|
|
|
+ @Schema(description = "装货净化重")
|
|
|
+ private Double loadingNetWeight;
|
|
|
+ /**
|
|
|
+ * 装货地址
|
|
|
+ */
|
|
|
+ @Schema(description = "装货地址")
|
|
|
+ private String loadingAddress;
|
|
|
+ /**
|
|
|
+ * 卸货净重
|
|
|
+ */
|
|
|
+ @Schema(description = "卸货净重")
|
|
|
+ private Double unloadingNetWeight;
|
|
|
+ /**
|
|
|
+ * 卸货地址
|
|
|
+ */
|
|
|
+ @Schema(description = "卸货地址")
|
|
|
+ private String unloadingAddress;
|
|
|
+ /**
|
|
|
+ * 接单时间
|
|
|
+ */
|
|
|
+ @Schema(description = "接单时间")
|
|
|
+ private String acceptTime;
|
|
|
+ /**
|
|
|
+ * 装货时间
|
|
|
+ */
|
|
|
+ @Schema(description = "装货时间")
|
|
|
+ private String loadingTime;
|
|
|
+ /**
|
|
|
+ * 离场时间
|
|
|
+ */
|
|
|
+ @Schema(description = "离场时间")
|
|
|
+ private String offsiteTime;
|
|
|
+ /**
|
|
|
+ * 状态
|
|
|
+ */
|
|
|
+ @Schema(description = "状态")
|
|
|
+ private String status;
|
|
|
+}
|