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
|
package th.co.ais.ssbsrfc.instance;
import javax.xml.bind.annotation.XmlElement;
public class AccessSecurity {
private String LoginSystemCode;
private String Password;
@XmlElement(name="LoginSystemCode",namespace="http://www.huawei.com/bme/cbsinterface/cbscommon")
public String getLoginSystemCode() {
return LoginSystemCode;
}
public void setLoginSystemCode(String loginSystemCode) {
LoginSystemCode = loginSystemCode;
}
@XmlElement(name="Password",namespace="http://www.huawei.com/bme/cbsinterface/cbscommon")
public String getPassword() {
return Password;
}
public void setPassword(String password) {
Password = password;
}
}
|