ecology_maven/weaver/aiyh_quanshi/entity/QsAccount.java

196 lines
3.5 KiB
Java

package weaver.aiyh_quanshi.entity;
public class QsAccount {
private String accountType;
private String userId = "";
private String userName = "";
private String userEmail = "";
private String userTel = "";
private String userPassword = "";
private String userMobile = "";
private String userCompany = "";
private String collectInfoId = "";
private String billInfoId = "";
private Integer confScale ;
private String hostUserId = "";
private String callbackUrl ="";
public Integer getConfScale() {
return confScale;
}
public void setConfScale(Integer confScale) {
this.confScale = confScale;
}
/**
* @return the accountType
*/
public String getAccountType() {
return accountType;
}
/**
* @param accountType the accountType to set
*/
public void setAccountType(String accountType) {
this.accountType = accountType;
}
/**
* @return the userId
*/
public String getUserId() {
return userId;
}
/**
* @param userId the userId to set
*/
public void setUserId(String userId) {
this.userId = userId;
}
/**
* @return the userName
*/
public String getUserName() {
return userName;
}
/**
* @param userName
* the userName to set
*/
public void setUserName(String userName) {
this.userName = userName;
}
/**
* @return the userEmail
*/
public String getUserEmail() {
return userEmail;
}
/**
* @param userEmail
* the userEmail to set
*/
public void setUserEmail(String userEmail) {
this.userEmail = userEmail;
}
/**
* @return the userTel
*/
public String getUserTel() {
return userTel;
}
/**
* @param userTel
* the userTel to set
*/
public void setUserTel(String userTel) {
this.userTel = userTel;
}
/**
* @return the userPassword
*/
public String getUserPassword() {
return userPassword;
}
/**
* @param userPassword
* the userPassword to set
*/
public void setUserPassword(String userPassword) {
this.userPassword = userPassword;
}
/**
* @return the userMobile
*/
public String getUserMobile() {
return userMobile;
}
/**
* @param userMobile
* the userMobile to set
*/
public void setUserMobile(String userMobile) {
this.userMobile = userMobile;
}
/**
* @return the userCompany
*/
public String getUserCompany() {
return userCompany;
}
/**
* @param userCompany the userCompany to set
*/
public void setUserCompany(String userCompany) {
this.userCompany = userCompany;
}
/**
* @return the collectInfoId
*/
public String getCollectInfoId() {
return collectInfoId;
}
/**
* @param collectInfoId the collectInfoId to set
*/
public void setCollectInfoId(String collectInfoId) {
this.collectInfoId = collectInfoId;
}
/**
* @return the billInfoId
*/
public String getBillInfoId() {
return billInfoId;
}
/**
* @param billInfoId the billInfoId to set
*/
public void setBillInfoId(String billInfoId) {
this.billInfoId = billInfoId;
}
/**
* @return the hostUserId
*/
public String getHostUserId() {
return hostUserId;
}
/**
* @param hostUserId the hostUserId to set
*/
public void setHostUserId(String hostUserId) {
this.hostUserId = hostUserId;
}
public String getCallbackUrl() {
return callbackUrl;
}
public void setCallbackUrl(String callbackUrl) {
this.callbackUrl = callbackUrl;
}
}