DispatchNote.java
2.2 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
package com.sunyo.wlpt.dispatch.domain;
import java.io.Serializable;
import java.util.Date;
import java.util.UUID;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.springframework.format.annotation.DateTimeFormat;
/**
* @author 子诚
* Description:调度记录实体类
* 时间:2020/4/22 15:32
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
public class DispatchNote implements Serializable {
private static final long serialVersionUID = -8250305235895911027L;
/**
* 调度记录编号uuid
*/
private String id;
/**
* 用户姓名
*/
private String userName;
/**
* 用户联系方式
*/
private String userMobile;
/**
* 车辆数量,单位:辆
*/
private Integer vehicleNumber;
/**
* 车辆类型:1.重型货车;2.中型货车;3.轻型货车;4.微型货车;5.拖车;6.叉车
*/
private String vehicleType;
/**
* 车牌号码
*/
private String licensePlateNumber;
/**
* 驾驶员姓名
*/
private String driverName;
/**
* 驾驶员联系方式
*/
private String driverMobile;
/**
* 调度业务类型
*/
private String dispatchType;
/**
* 场站位置
*/
private String station;
/**
* 记录状态:1.完成状态;2.执行状态;3、取消(撤销)状态;4、待执行状态
*/
private String status;
/**
* 调度记录(任务)创建时间
*/
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date gmtCreate;
/**
* 调度记录修改时间
*/
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date gmtModified;
/**
* 任务开始时间
*/
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date beginTime;
/**
* 任务完成时间
*/
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date endTime;
/**
* 操作类型:1.新增;2.修改;3.删除
*/
private String operation;
}