zhangback
20 小时以前 ba87fd72f14c5ed0caf14e9d8ff116d254a8c113
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.ruoyi.tms.domain.vo;
 
import lombok.Data;
 
@Data
public class DpDriverDispatchItemVo {
 
 
   //调度单号
   private String dispatchNo;
   //客户名称
   private String customerName;
   //项目名称
   private String projectName;
 
   //运输路线
   private String transportLine;
 
   //确认时间
   private String confirmTime;
 
   //下单时间
   private String createTime;
   //司机名字
   private String driverName;
 
      //车牌号
   private String licensePlate;
 
   //车辆行程json [{"status": "身体检查", "address": "珠海市香洲区兴湾四路13号", "tripTime": "2025.12.29 11:23:24"}]
   private String trips;
}