ShipHeaderBean.java
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
package com.huaheng.mmsrf.bean;
import java.util.Date;
/**
* Created by youjie on 2021/3/12
*/
public class ShipHeaderBean {
private String id;
private String driverName;
private String projectName;
private String receiptName;
private String address;
private String numberPlate;
private String status;
private String updateTime;
public ShipHeaderBean(String projectName,String driverName,String receiptName, String address, String numberPlate, String status, String updateTime) {
this.projectName = projectName;
this.driverName = driverName;
this.receiptName = receiptName;
this.address = address;
this.numberPlate = numberPlate;
this.status = status;
this.updateTime = updateTime;
}
public String getDriverName() {
return driverName;
}
public void setDriverName(String driverName) {
this.driverName = driverName;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getNumberPlate() {
return numberPlate;
}
public void setNumberPlate(String numberPlate) {
this.numberPlate = numberPlate;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public String getUpdateTime() {
return updateTime;
}
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
public String getReceiptName() {
return receiptName;
}
public void setReceiptName(String receiptName) {
this.receiptName = receiptName;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getProjectName() {
return projectName;
}
public void setProjectName(String projectName) {
this.projectName = projectName;
}
}