AgvTask.java
5.3 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
package com.huaheng.api.acs.domain;
import com.huaheng.framework.web.domain.BaseEntity;
import java.util.Date;
import java.util.List;
/**
* AGV任务实体
*
*/
public class AgvTask extends BaseEntity {
private Integer id;
//交互标识
private String interactionId;
//任务头标识
private Integer taskHeaderId;
//任务子标识
private Integer taskDetailId;
//任务类型
private String taskType;
//货架编码
private String shelfNo;
//站台编码
private String station;
//源位置编码
private String fromLocationNo;
//目的位置编码
private String toLocationNo;
//方向
private String orientation;
//平台
private String platform;
//小车编号
private String carNo;
//状态
private String state;
//优先级
private Integer status;
//仓库ID
private Integer warehouseId;
//仓库编码
private String warehouseCode;
//货主ID
private Integer companyId;
//货主编码
private String companyCode;
//货主ID list
private List<Integer> companyIdList;
//货主list
private List<String> companyCodeList;
private Date date;
public Date getDate() {
return date;
}
public void setDate(Date date) {
this.date = date;
}
public List<Integer> getCompanyIdList() {
return companyIdList;
}
public void setCompanyIdList(List<Integer> companyIdList) {
this.companyIdList = companyIdList;
}
public Integer getWarehouseId() {
return warehouseId;
}
public void setWarehouseId(Integer warehouseId) {
this.warehouseId = warehouseId;
}
public String getWarehouseCode() {
return warehouseCode;
}
public void setWarehouseCode(String warehouseCode) {
this.warehouseCode = warehouseCode;
}
public Integer getCompanyId() {
return companyId;
}
public void setCompanyId(Integer companyId) {
this.companyId = companyId;
}
public String getCompanyCode() {
return companyCode;
}
public void setCompanyCode(String companyCode) {
this.companyCode = companyCode;
}
public List<String> getCompanyCodeList() {
return companyCodeList;
}
public void setCompanyCodeList(List<String> companyCodeList) {
this.companyCodeList = companyCodeList;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getInteractionId() {
return interactionId;
}
public void setInteractionId(String interactionId) {
this.interactionId = interactionId;
}
public Integer getTaskHeaderId() {
return taskHeaderId;
}
public void setTaskHeaderId(Integer taskHeaderId) {
this.taskHeaderId = taskHeaderId;
}
public Integer getTaskDetailId() {
return taskDetailId;
}
public void setTaskDetailId(Integer taskDetailId) {
this.taskDetailId = taskDetailId;
}
public String getTaskType() {
return taskType;
}
public void setTaskType(String taskType) {
this.taskType = taskType;
}
public String getShelfNo() {
return shelfNo;
}
public void setShelfNo(String shelfNo) {
this.shelfNo = shelfNo;
}
public String getStation() {
return station;
}
public void setStation(String station) {
this.station = station;
}
public String getFromLocationNo() {
return fromLocationNo;
}
public void setFromLocationNo(String fromLocationNo) {
this.fromLocationNo = fromLocationNo;
}
public String getToLocationNo() {
return toLocationNo;
}
public void setToLocationNo(String toLocationNo) {
this.toLocationNo = toLocationNo;
}
public String getOrientation() {
return orientation;
}
public void setOrientation(String orientation) {
this.orientation = orientation;
}
public String getPlatform() {
return platform;
}
public void setPlatform(String platform) {
this.platform = platform;
}
public String getCarNo() {
return carNo;
}
public void setCarNo(String carNo) {
this.carNo = carNo;
}
public String getState() {
return state;
}
public void setState(String state) {
this.state = state;
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
@Override
public String toString() {
return "AgvTask{" +
"id=" + id +
", interactionId='" + interactionId + '\'' +
", taskHeaderId=" + taskHeaderId +
", taskDetailId=" + taskDetailId +
", taskType='" + taskType + '\'' +
", shelfNo='" + shelfNo + '\'' +
", station='" + station + '\'' +
", fromLocationNo='" + fromLocationNo + '\'' +
", toLocationNo='" + toLocationNo + '\'' +
", orientation='" + orientation + '\'' +
", platform='" + platform + '\'' +
", carNo='" + carNo + '\'' +
", state='" + state + '\'' +
'}';
}
}