Task.java
5.91 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
package com.huaheng.mobilewms.bean;
/**
* Created by youjie on 2018/8/14
*/
public class Task {
private String beginTime;
private int companyId;
private String containerCode;
private int containerId;
private String createdBy;
private String destinationLocation;
private String endTime;
private int id;
private String lastUpdated;
private String lastUpdatedBy;
private int pageNumber;
private int pageSize;
private int priority;
private String sectionEndTime;
private String sectionStartTime;
private String sourceLocation;
private int station;
private int status;
private int type;
private String userDef1;
private String userDef2;
private String userDef3;
private String warehouseCode;
private int warehouseId;
public String getBeginTime() {
return beginTime;
}
public void setBeginTime(String beginTime) {
this.beginTime = beginTime;
}
public int getCompanyId() {
return companyId;
}
public void setCompanyId(int companyId) {
this.companyId = companyId;
}
public String getContainerCode() {
return containerCode;
}
public void setContainerCode(String containerCode) {
this.containerCode = containerCode;
}
public int getContainerId() {
return containerId;
}
public void setContainerId(int containerId) {
this.containerId = containerId;
}
public String getCreatedBy() {
return createdBy;
}
public void setCreatedBy(String createdBy) {
this.createdBy = createdBy;
}
public String getDestinationLocation() {
return destinationLocation;
}
public void setDestinationLocation(String destinationLocation) {
this.destinationLocation = destinationLocation;
}
public String getEndTime() {
return endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getLastUpdated() {
return lastUpdated;
}
public void setLastUpdated(String lastUpdated) {
this.lastUpdated = lastUpdated;
}
public String getLastUpdatedBy() {
return lastUpdatedBy;
}
public void setLastUpdatedBy(String lastUpdatedBy) {
this.lastUpdatedBy = lastUpdatedBy;
}
public int getPageNumber() {
return pageNumber;
}
public void setPageNumber(int pageNumber) {
this.pageNumber = pageNumber;
}
public int getPageSize() {
return pageSize;
}
public void setPageSize(int pageSize) {
this.pageSize = pageSize;
}
public int getPriority() {
return priority;
}
public void setPriority(int priority) {
this.priority = priority;
}
public String getSectionEndTime() {
return sectionEndTime;
}
public void setSectionEndTime(String sectionEndTime) {
this.sectionEndTime = sectionEndTime;
}
public String getSectionStartTime() {
return sectionStartTime;
}
public void setSectionStartTime(String sectionStartTime) {
this.sectionStartTime = sectionStartTime;
}
public String getSourceLocation() {
return sourceLocation;
}
public void setSourceLocation(String sourceLocation) {
this.sourceLocation = sourceLocation;
}
public int getStation() {
return station;
}
public void setStation(int station) {
this.station = station;
}
public int getStatus() {
return status;
}
public void setStatus(int status) {
this.status = status;
}
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
public String getUserDef1() {
return userDef1;
}
public void setUserDef1(String userDef1) {
this.userDef1 = userDef1;
}
public String getUserDef2() {
return userDef2;
}
public void setUserDef2(String userDef2) {
this.userDef2 = userDef2;
}
public String getUserDef3() {
return userDef3;
}
public void setUserDef3(String userDef3) {
this.userDef3 = userDef3;
}
public String getWarehouseCode() {
return warehouseCode;
}
public void setWarehouseCode(String warehouseCode) {
this.warehouseCode = warehouseCode;
}
public int getWarehouseId() {
return warehouseId;
}
public void setWarehouseId(int warehouseId) {
this.warehouseId = warehouseId;
}
@Override
public String toString() {
return "Task{" +
"beginTime='" + beginTime + '\'' +
", companyId=" + companyId +
", containerCode='" + containerCode + '\'' +
", containerId=" + containerId +
", createdBy='" + createdBy + '\'' +
", destinationLocation='" + destinationLocation + '\'' +
", endTime='" + endTime + '\'' +
", id=" + id +
", lastUpdated='" + lastUpdated + '\'' +
", lastUpdatedBy='" + lastUpdatedBy + '\'' +
", pageNumber=" + pageNumber +
", pageSize=" + pageSize +
", priority=" + priority +
", sectionEndTime='" + sectionEndTime + '\'' +
", sectionStartTime='" + sectionStartTime + '\'' +
", sourceLocation='" + sourceLocation + '\'' +
", station=" + station +
", status=" + status +
", type=" + type +
", userDef1='" + userDef1 + '\'' +
", userDef2='" + userDef2 + '\'' +
", userDef3='" + userDef3 + '\'' +
", warehouseCode=" + warehouseCode +
", warehouseId=" + warehouseId +
'}';
}
}