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
|
package th.co.ais.ssbsrfc.instance;
import javax.xml.bind.annotation.XmlElement;
public class OwnershipInfo {
private String BEID;
private String BRID;
@XmlElement(name="BEID",namespace="http://www.huawei.com/bme/cbsinterface/cbscommon")
public String getBEID() {
return BEID;
}
public void setBEID(String bEID) {
BEID = bEID;
}
@XmlElement(name="BRID",namespace="http://www.huawei.com/bme/cbsinterface/cbscommon")
public String getBRID() {
return BRID;
}
public void setBRID(String bRID) {
BRID = bRID;
}
}
|