Shipment.java
1.5 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
package com.huaheng.api.erp.domain;
import javax.xml.bind.annotation.*;
import java.io.Serializable;
import java.math.BigDecimal;
public class Shipment implements Serializable {
private static final long serialVersionUID = 6216788461740976261L;
//erp订单号
private String SAPNO;
//erp行号
private String SAPLINE;
//物料编号
private String MATNR;
//批次
private String CHARG;
//数量
private BigDecimal MENCE;
//库存地点
private String LGORT;
private ShipmentItem item;
public String getSAPLINE() {
return SAPLINE;
}
public void setSAPLINE(String SAPLINE) {
this.SAPLINE = SAPLINE;
}
public String getMATNR() {
return MATNR;
}
public void setMATNR(String MATNR) {
this.MATNR = MATNR;
}
public String getCHARG() {
return CHARG;
}
public void setCHARG(String CHARG) {
this.CHARG = CHARG;
}
public BigDecimal getMENCE() {
return MENCE;
}
public void setMENCE(BigDecimal MENCE) {
this.MENCE = MENCE;
}
public String getLGORT() {
return LGORT;
}
public void setLGORT(String LGORT) {
this.LGORT = LGORT;
}
public String getSAPNO() {
return SAPNO;
}
public void setSAPNO(String SAPNO) {
this.SAPNO = SAPNO;
}
public ShipmentItem getItem() {
return item;
}
public void setItem(ShipmentItem item) {
this.item = item;
}
}