TaskDetail.java
4.82 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
package com.huaheng.wms.picking;
/**
* Created by youjie on 2018/8/14
*/
public class TaskDetail {
private int allocationId;
private String containerCode;
private String destinationLocation;
private String endTime;
private int id;
private String lastUpdated;
private String lastUpdatedBy;
private String materialCode;
private String materialName;
private int pageNumber;
private int pageSize;
private float qty;
private String sectionEndTime;
private String sectionStartTime;
private String sourceLocation;
private int status;
private int taskId;
private String warehouseCode;
private int warehouseId;
public int getAllocationId() {
return allocationId;
}
public void setAllocationId(int allocationId) {
this.allocationId = allocationId;
}
public String getContainerCode() {
return containerCode;
}
public void setContainerCode(String containerCode) {
this.containerCode = containerCode;
}
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 String getMaterialCode() {
return materialCode;
}
public void setMaterialCode(String materialCode) {
this.materialCode = materialCode;
}
public String getMaterialName() {
return materialName;
}
public void setMaterialName(String materialName) {
this.materialName = materialName;
}
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 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 getStatus() {
return status;
}
public void setStatus(int status) {
this.status = status;
}
public int getTaskId() {
return taskId;
}
public void setTaskId(int taskId) {
this.taskId = taskId;
}
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;
}
public float getQty() {
return qty;
}
public void setQty(float qty) {
this.qty = qty;
}
@Override
public String toString() {
return "TaskDetail{" +
"allocationId=" + allocationId +
", containerCode='" + containerCode + '\'' +
", destinationLocation='" + destinationLocation + '\'' +
", endTime='" + endTime + '\'' +
", id=" + id +
", lastUpdated='" + lastUpdated + '\'' +
", lastUpdatedBy='" + lastUpdatedBy + '\'' +
", materialCode='" + materialCode + '\'' +
", materialName='" + materialName + '\'' +
", pageNumber=" + pageNumber +
", pageSize=" + pageSize +
", sectionEndTime='" + sectionEndTime + '\'' +
", sectionStartTime='" + sectionStartTime + '\'' +
", sourceLocation='" + sourceLocation + '\'' +
", status=" + status +
", taskId=" + taskId +
", warehouseCode='" + warehouseCode + '\'' +
", warehouseId=" + warehouseId +
'}';
}
}