package com.walker.pay.allinpaycloud.pojo;
|
|
public class MemberPerson {
|
|
@Override
|
public String toString(){
|
return new StringBuilder("[name=").append(this.name)
|
.append(", userId=").append(this.userId)
|
.append(", userState=").append(this.userState)
|
.append("]").toString();
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public long getUserState() {
|
return userState;
|
}
|
|
public void setUserState(long userState) {
|
this.userState = userState;
|
}
|
|
public String getUserId() {
|
return userId;
|
}
|
|
public void setUserId(String userId) {
|
this.userId = userId;
|
}
|
|
public String getCountry() {
|
return country;
|
}
|
|
public void setCountry(String country) {
|
this.country = country;
|
}
|
|
public String getProvince() {
|
return province;
|
}
|
|
public void setProvince(String province) {
|
this.province = province;
|
}
|
|
public String getArea() {
|
return area;
|
}
|
|
public void setArea(String area) {
|
this.area = area;
|
}
|
|
public String getAddress() {
|
return address;
|
}
|
|
public void setAddress(String address) {
|
this.address = address;
|
}
|
|
public String getPhone() {
|
return phone;
|
}
|
|
public void setPhone(String phone) {
|
this.phone = phone;
|
}
|
|
public String getIdentityCardNo() {
|
return identityCardNo;
|
}
|
|
public void setIdentityCardNo(String identityCardNo) {
|
this.identityCardNo = identityCardNo;
|
}
|
|
public boolean getIsPhoneChecked() {
|
return isPhoneChecked;
|
}
|
|
public void setIsPhoneChecked(boolean phoneChecked) {
|
isPhoneChecked = phoneChecked;
|
}
|
|
public String getRegisterTime() {
|
return registerTime;
|
}
|
|
public void setRegisterTime(String registerTime) {
|
this.registerTime = registerTime;
|
}
|
|
public String getRealNameTime() {
|
return realNameTime;
|
}
|
|
public void setRealNameTime(String realNameTime) {
|
this.realNameTime = realNameTime;
|
}
|
|
public boolean getIsIdentityChecked() {
|
return isIdentityChecked;
|
}
|
|
public void setIsIdentityChecked(boolean identityChecked) {
|
isIdentityChecked = identityChecked;
|
}
|
|
public long getSource() {
|
return source;
|
}
|
|
public void setSource(long source) {
|
this.source = source;
|
}
|
|
public boolean getIsSetPayPwd() {
|
return isSetPayPwd;
|
}
|
|
public void setIsSetPayPwd(boolean setPayPwd) {
|
isSetPayPwd = setPayPwd;
|
}
|
|
public long getAcctOrgType() {
|
return acctOrgType;
|
}
|
|
public void setAcctOrgType(long acctOrgType) {
|
this.acctOrgType = acctOrgType;
|
}
|
|
public String getSignAcctProtocolTime() {
|
return signAcctProtocolTime;
|
}
|
|
public void setSignAcctProtocolTime(String signAcctProtocolTime) {
|
this.signAcctProtocolTime = signAcctProtocolTime;
|
}
|
|
public String getAcctProtocolNo() {
|
return acctProtocolNo;
|
}
|
|
public void setAcctProtocolNo(String acctProtocolNo) {
|
this.acctProtocolNo = acctProtocolNo;
|
}
|
|
public boolean getIsSignContract() {
|
return isSignContract;
|
}
|
|
public void setIsSignContract(boolean signContract) {
|
isSignContract = signContract;
|
}
|
|
public long getPayFailAmount() {
|
return payFailAmount;
|
}
|
|
public void setPayFailAmount(long payFailAmount) {
|
this.payFailAmount = payFailAmount;
|
}
|
|
public long getIdentityType() {
|
return identityType;
|
}
|
|
public void setIdentityType(long identityType) {
|
this.identityType = identityType;
|
}
|
|
private long identityType;
|
private long payFailAmount;
|
private boolean isSignContract;
|
private String name;
|
private long userState;
|
private String userId;
|
private String country;
|
private String province;
|
private String area;
|
private String address;
|
private String phone;
|
private String identityCardNo;
|
// private String identityBeginDate;
|
private boolean isPhoneChecked;
|
private String registerTime;
|
private String realNameTime;
|
private boolean isIdentityChecked;
|
private long source;
|
private boolean isSetPayPwd = false;
|
private long acctOrgType;
|
private String signAcctProtocolTime;
|
private String acctProtocolNo;
|
}
|