ReplyResult.java
1.09 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
package com.huaheng.api.wcs.domain;
import com.huaheng.api.erp.client.shipment.rfc.TBAT;
import com.huaheng.api.erp.client.shipment.rfc.TSER;
import javax.xml.bind.annotation.XmlElement;
import java.util.List;
public class ReplyResult {
private String o_MBLNR;
private String o_MESSG;
private String o_TYPE;
private List<TBAT> tbats;
private List<TSER> tsers;
public String getO_MBLNR() {
return o_MBLNR;
}
public void setO_MBLNR(String o_MBLNR) {
this.o_MBLNR = o_MBLNR;
}
public String getO_MESSG() {
return o_MESSG;
}
public void setO_MESSG(String o_MESSG) {
this.o_MESSG = o_MESSG;
}
public String getO_TYPE() {
return o_TYPE;
}
public void setO_TYPE(String o_TYPE) {
this.o_TYPE = o_TYPE;
}
public List<TBAT> getTbats() {
return tbats;
}
public void setTbats(List<TBAT> tbats) {
this.tbats = tbats;
}
public List<TSER> getTsers() {
return tsers;
}
public void setTsers(List<TSER> tsers) {
this.tsers = tsers;
}
}