AdjustmentInfo.java
1.26 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
package th.co.ais.ssbsrfc.instance;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
@XmlType (propOrder={"balanceType", "adjustmentType","adjustmentAmt","currencyID"})
public class AdjustmentInfo {
String BalanceType;
String AdjustmentType;
String AdjustmentAmt;
String CurrencyID;
@XmlElement(name="BalanceType",namespace="http://cbs.huawei.com/ar/wsservice/arcommon")
public String getBalanceType() {
return BalanceType;
}
public void setBalanceType(String balanceType) {
BalanceType = balanceType;
}
@XmlElement(name="AdjustmentType",namespace="http://cbs.huawei.com/ar/wsservice/arcommon")
public String getAdjustmentType() {
return AdjustmentType;
}
public void setAdjustmentType(String adjustmentType) {
AdjustmentType = adjustmentType;
}
@XmlElement(name="AdjustmentAmt",namespace="http://cbs.huawei.com/ar/wsservice/arcommon")
public String getAdjustmentAmt() {
return AdjustmentAmt;
}
public void setAdjustmentAmt(String adjustmentAmt) {
AdjustmentAmt = adjustmentAmt;
}
@XmlElement(name="CurrencyID",namespace="http://cbs.huawei.com/ar/wsservice/arcommon")
public String getCurrencyID() {
return CurrencyID;
}
public void setCurrencyID(String currencyID) {
CurrencyID = currencyID;
}
}