AvgTaskModel.java
3.02 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
package com.huaheng.api.ACS.domain;
public class AvgTaskModel {
private Integer id;
private String interactionId; // 交互标识,int,唯一 ,必填
private Integer taskHeaderId; //任务头标识,int, ,必填
private Integer taskDetailId; //任务子标识,int, ,必填
private String taskType; //任务类型,string (50),putway 上架 pick 拣货,必填
private String shelfNo; //货架编码,string (50),必填
private String station; //站台编码,string (50),默认 0,必填
private String fromLocationNo; //源位置编码,string (50),默认 0 必填
private String toLocationNo; //目的位置编码,string (50),默认 0 必填
private String orientation; //方向,string (50),必填
private String platform; //平台,string (50),wms,必填
private String carNo; //小车编号,string (50),必填
private String state; //状态,string (50),0 执行成功 1 空出 2 重入,必填
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;
}
}