RobotInfo.java
3.98 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
package com.huaheng.api.robot.domain;
import java.util.Date;
public class RobotInfo {
private String orderNo;
private String containerCode;
private String port;
private String line;
//物料编号
private String materialCode;
private int materialCodePLC;
//物料数量
private int qty;
private String sn;
private int position;
private int isPrint;
private int area;
private int qc;
private int type;
//空库位数量
private int emptyLocation;
//有货库位数量
private int someLocation;
//库位利用率
private String storageUtilization;
//任务编号
private int taskId;
//任务开始时间
private Date taskStartTime;
//任务结束时间
private Date taskEndTime;
//物料名称
private String materialName;
private String level;
public int getTaskId() {
return taskId;
}
public void setTaskId(int taskId) {
this.taskId = taskId;
}
public Date getTaskStartTime() {
return taskStartTime;
}
public void setTaskStartTime(Date taskStartTime) {
this.taskStartTime = taskStartTime;
}
public Date getTaskEndTime() {
return taskEndTime;
}
public void setTaskEndTime(Date taskEndTime) {
this.taskEndTime = taskEndTime;
}
public String getMaterialName() {
return materialName;
}
public void setMaterialName(String materialName) {
this.materialName = materialName;
}
public int getEmptyLocation() {
return emptyLocation;
}
public void setEmptyLocation(int emptyLocation) {
this.emptyLocation = emptyLocation;
}
public int getSomeLocation() {
return someLocation;
}
public void setSomeLocation(int someLocation) {
this.someLocation = someLocation;
}
public String getStorageUtilization() {
return storageUtilization;
}
public void setStorageUtilization(String storageUtilization) {
this.storageUtilization = storageUtilization;
}
public String getOrderNo() {
return orderNo;
}
public void setOrderNo(String orderNo) {
this.orderNo = orderNo;
}
public String getContainerCode() {
return containerCode;
}
public void setContainerCode(String containerCode) {
this.containerCode = containerCode;
}
public String getPort() {
return port;
}
public void setPort(String port) {
this.port = port;
}
public String getLine() {
return line;
}
public void setLine(String line) {
this.line = line;
}
public String getMaterialCode() {
return materialCode;
}
public void setMaterialCode(String materialCode) {
this.materialCode = materialCode;
}
public int getMaterialCodePLC() {
return materialCodePLC;
}
public void setMaterialCodePLC(int materialCodePLC) {
this.materialCodePLC = materialCodePLC;
}
public int getQty() {
return qty;
}
public void setQty(int qty) {
this.qty = qty;
}
public String getSn() {
return sn;
}
public void setSn(String sn) {
this.sn = sn;
}
public int getPosition() {
return position;
}
public void setPosition(int position) {
this.position = position;
}
public int getIsPrint() {
return isPrint;
}
public void setIsPrint(int isPrint) {
this.isPrint = isPrint;
}
public int getArea() {
return area;
}
public void setArea(int area) {
this.area = area;
}
public int getQc() {
return qc;
}
public void setQc(int qc) {
this.qc = qc;
}
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
public String getLevel() {
return level;
}
public void setLevel(String level) {
this.level = level;
}
}