ERPReceipt.java
2.18 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
package com.huaheng.api.erp.domain;
import java.util.List;
public class ERPReceipt {
private String containerCode; //托盘号
private String requestInCode; //码垛站台位置
private List<BoxInfo> listBoxInfo; //所有箱的信息
private String receiptCode; //排产订单
private String orderCode; //订单信息
private String orderName; //订单名称
private int orderFinish; //订单是否结束
private int stack; //垛型
private int qc; //是否质检
private String customerCode; //客户编码
public String getReceiptCode() {
return receiptCode;
}
public void setReceiptCode(String receiptCode) {
this.receiptCode = receiptCode;
}
public String getContainerCode() {
return containerCode;
}
public void setContainerCode(String containerCode) {
this.containerCode = containerCode;
}
public String getRequestInCode() {
return requestInCode;
}
public void setRequestInCode(String requestInCode) {
this.requestInCode = requestInCode;
}
public List<BoxInfo> getListBoxInfo() {
return listBoxInfo;
}
public void setListBoxInfo(List<BoxInfo> listBoxInfo) {
this.listBoxInfo = listBoxInfo;
}
public String getOrderCode() {
return orderCode;
}
public void setOrderCode(String orderCode) {
this.orderCode = orderCode;
}
public String getOrderName() {
return orderName;
}
public void setOrderName(String orderName) {
this.orderName = orderName;
}
public int getOrderFinish() {
return orderFinish;
}
public void setOrderFinish(int orderFinish) {
this.orderFinish = orderFinish;
}
public int getStack() {
return stack;
}
public void setStack(int stack) {
this.stack = stack;
}
public int getQc() {
return qc;
}
public void setQc(int qc) {
this.qc = qc;
}
public String getCustomerCode() {
return customerCode;
}
public void setCustomerCode(String customerCode) {
this.customerCode = customerCode;
}
}