zhangback
6 天以前 b054362aaf616bfe0be0b50ae5dc2137091dbd7d
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package com.ruoyi.tms.domain.vo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.annotation.Excel;
import lombok.Data;
 
import java.util.Date;
import java.util.List;
 
@Data
public class DriverDispatchVo {
    // 司机ID
    private Integer driverId;
    //调度单ID
    private Integer dispatchId;
    // 调度单号
    private String dispatchNo;
    // 运输工具号码
    private String licensePlate;
    // 路线
    private String transportLine;
    // 客户
    private String customerName;
    // 当前状态
    private Integer status;
 
    private String statusStr;
 
    private String shelfCode;
 
    private String receiverAddress;
 
    private String shipperAddress;
 
 
    // 0 = '行程中',1= '待甩挂' 2 = '待接挂',3 = '已甩挂',4 = '已接挂'5 = '完成行程'
    private Integer tddStatus;
    // 要求最晚发车时间
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date latestDeparture;
 
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date okTime;
 
    private List<Integer> inStatusList;
 
    private List<Integer> inTdoStatusList;
 
}