|
@@ -0,0 +1,53 @@
|
|
|
|
|
+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;
|
|
|
|
|
+import java.math.BigDecimal;
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * @author :chenXiaoFei
|
|
|
|
|
+ * @version :1.0
|
|
|
|
|
+ * @description : 分页查询运单信息响应参数
|
|
|
|
|
+ * @create :2025-11-11 20:16:00
|
|
|
|
|
+ */
|
|
|
|
|
+@Data
|
|
|
|
|
+public class SalesWaybillOrderResp implements Serializable {
|
|
|
|
|
+
|
|
|
|
|
+ @Serial
|
|
|
|
|
+ private static final long serialVersionUID = -6153312023002477484L;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 执行中的订单
|
|
|
|
|
+ */
|
|
|
|
|
+ @Schema(description = "执行中的订单")
|
|
|
|
|
+ private Integer ongoingLogOrder;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 今日车次
|
|
|
|
|
+ */
|
|
|
|
|
+ @Schema(description = "今日车次")
|
|
|
|
|
+ private Integer todayTruckCount;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 场内车辆
|
|
|
|
|
+ */
|
|
|
|
|
+ @Schema(description = "场内车辆")
|
|
|
|
|
+ private Integer insideVehicleCount;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 今日出货量
|
|
|
|
|
+ */
|
|
|
|
|
+ @Schema(description = "今日出货量")
|
|
|
|
|
+ private Integer todayShipmentWeight;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 本月出货量
|
|
|
|
|
+ */
|
|
|
|
|
+ @Schema(description = "本月出货量")
|
|
|
|
|
+ private Integer monthShipmentWeight;
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+}
|