ERPShipment.java
2.32 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
package com.huaheng.api.erp.domain;
import io.swagger.models.auth.In;
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
public class ERPShipment {
private String shipmentCode; //生产计划
private String shipmentType; //单据类型
private String orderCode;//订单信息
private List<MaterialInfo> materialList;
private Date scheduleDate;
private String remake;
private String carType;//车型
private Integer havContainer;//是否带托
private Integer paper;//是否垫纸
private Integer pay;//是否收费
private String stack;//垛型
public String getStack() {
return stack;
}
public void setStack(String stack) {
this.stack = stack;
}
public Integer getHavContainer() {
return havContainer;
}
public void setHavContainer(Integer havContainer) {
this.havContainer = havContainer;
}
public Integer getPaper() {
return paper;
}
public void setPaper(Integer paper) {
this.paper = paper;
}
public Integer getPay() {
return pay;
}
public void setPay(Integer pay) {
this.pay = pay;
}
public String getCarType() {
return carType;
}
public void setCarType(String carType) {
this.carType = carType;
}
public String getShipmentCode() {
return shipmentCode;
}
public void setShipmentCode(String shipmentCode) {
this.shipmentCode = shipmentCode;
}
public String getShipmentType() {
return shipmentType;
}
public void setShipmentType(String shipmentType) {
this.shipmentType = shipmentType;
}
public String getOrder() {
return orderCode;
}
public void setOrder(String orderCode) {
this.orderCode = orderCode;
}
public List<MaterialInfo> getMaterialList() {
return materialList;
}
public void setMaterialList(List<MaterialInfo> materialList) {
this.materialList = materialList;
}
public Date getScheduleDate() {
return scheduleDate;
}
public void setScheduleDate(Date scheduleDate) {
this.scheduleDate = scheduleDate;
}
public String getRemake() {
return remake;
}
public void setRemake(String remake) {
this.remake = remake;
}
}