63 lines
1.2 KiB
Java
63 lines
1.2 KiB
Java
package com.ample.esb.bean.amp;
|
|
|
|
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
|
|
|
@XStreamAlias("CONTR")
|
|
public class Contr {
|
|
|
|
@XStreamAlias("CONTNUM")
|
|
private String contNum;
|
|
|
|
@XStreamAlias("RELATIONSHIPCODE")
|
|
private String relationshipCode;
|
|
|
|
@XStreamAlias("CHNAME")
|
|
private String chName;
|
|
|
|
@XStreamAlias("CELLPHONE")
|
|
private String cellPhone;
|
|
|
|
@XStreamAlias("MOBILE")
|
|
private String mobile;
|
|
|
|
public String getContNum() {
|
|
return contNum;
|
|
}
|
|
|
|
public void setContNum(String contNum) {
|
|
this.contNum = contNum;
|
|
}
|
|
|
|
public String getCellPhone() {
|
|
return cellPhone;
|
|
}
|
|
|
|
public void setCellPhone(String cellPhone) {
|
|
this.cellPhone = cellPhone;
|
|
}
|
|
|
|
public String getRelationshipCode() {
|
|
return relationshipCode;
|
|
}
|
|
|
|
public void setRelationshipCode(String relationshipCode) {
|
|
this.relationshipCode = relationshipCode;
|
|
}
|
|
|
|
public String getChName() {
|
|
return chName;
|
|
}
|
|
|
|
public void setChName(String chName) {
|
|
this.chName = chName;
|
|
}
|
|
|
|
public String getMobile() {
|
|
return mobile;
|
|
}
|
|
|
|
public void setMobile(String mobile) {
|
|
this.mobile = mobile;
|
|
}
|
|
}
|