StateInfoUploadModel.java
3.33 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
package com.huaheng.api.ACS.domain;
public class StateInfoUploadModel {
private String carNo; // 小车编号,string(50),唯一 ,必填
private String interactionId; // 交互标识,int,默认 0,必填"
private String taskType; // 任务类型,string (50),putway 上架 pick 拣货,必填
private String shelfNo; // 货架编码,string (50),默认 0,必填
private String station; // 站台编码,string (50),默认 0,必填
private String currentLocationNo; // 当前位置编码,string (50),默认 0 必填
private String fromLocationNo; // 源位置编码,string (50),默认 0 必填
private String toLocationNo; // 目的位置编码,string (50),默认 0 必填
private String orientation; // 方向,string (50),N,S,E,W,必填
private Integer percentCapacity; // 电量,int【0-100】,必填
private Integer exceptionFlag; // 异常标志 0 正常 1 异常,int,默认 0 必填
private String state; // 状态,string (50),0 空闲 1 预定 2 任务中 -1 充电,必填
private String exceptionInfo; // 异常信息 string(200)
public String getCarNo() {
return carNo;
}
public void setCarNo(String carNo) {
this.carNo = carNo;
}
public String getInteractionId() {
return interactionId;
}
public void setInteractionId(String interactionId) {
this.interactionId = interactionId;
}
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 getCurrentLocationNo() {
return currentLocationNo;
}
public void setCurrentLocationNo(String currentLocationNo) {
this.currentLocationNo = currentLocationNo;
}
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 Integer getPercentCapacity() {
return percentCapacity;
}
public void setPercentCapacity(Integer percentCapacity) {
this.percentCapacity = percentCapacity;
}
public Integer getExceptionFlag() {
return exceptionFlag;
}
public void setExceptionFlag(Integer exceptionFlag) {
this.exceptionFlag = exceptionFlag;
}
public String getState() {
return state;
}
public void setState(String state) {
this.state = state;
}
public String getExceptionInfo() {
return exceptionInfo;
}
public void setExceptionInfo(String exceptionInfo) {
this.exceptionInfo = exceptionInfo;
}
}