|
|
@@ -0,0 +1,19 @@
|
|
|
+package com.aoyang.tms.controller.vo;
|
|
|
+
|
|
|
+import com.aoyang.tms.entity.WorkCycle;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Description: 行程周期实体
|
|
|
+ * @Author guoyong
|
|
|
+ * @Date 2022/4/21 17:29
|
|
|
+ * @Version 1.0
|
|
|
+ */
|
|
|
+public class WorkCycleVO extends WorkCycle {
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "装车订单数量")
|
|
|
+ private int zhuagncheOrderNum;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "卸车订单数量")
|
|
|
+ private int xiecheOrderNum;
|
|
|
+}
|