Blame view

src/th/co/ais/ssbsrfc/instance/AdjustmentResult.java 719 Bytes
1048b156   Suraputt Suntimitr   Template
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
package th.co.ais.ssbsrfc.instance;

import java.util.List;

import javax.xml.bind.annotation.XmlElement;

public class AdjustmentResult {

	private String AcctKey;
	@XmlElement(name = "AdjustmentInfo",namespace="http://www.huawei.com/bme/cbsinterface/arservices")
	private List<AdjustmentInfo> adjustmentInfo;
	
	@XmlElement(name="AcctKey",namespace="http://www.huawei.com/bme/cbsinterface/arservices")
	public String getAcctKey() {
		return AcctKey;
	}
	public void setAcctKey(String acctKey) {
		AcctKey = acctKey;
	}
	public List<AdjustmentInfo> getAdjustmentInfo() {
		return adjustmentInfo;
	}
	public void setAdjustmentInfo(List<AdjustmentInfo> adjustmentInfo) {
		this.adjustmentInfo = adjustmentInfo;
	}
	


}