📄 account.java
字号:
/**
*
*/
package com.eshop.vo;
/**
*数据库映射的值对象“account”
* @author jonson
*
*/
public class Account extends BaseVo {
private String userid;//用户用户名
private String password;//密码
private String confirmpassword;//验证密码
private String email;//电子邮件
private String name;//真实姓名
private String status;//状态
private String addr1;//地址1
private String addr2;//地址2
private String city;//城市
private String state ;//省或洲
private String zip;//邮政编码
private String country;//国家
private String phone;//电话号码
/**
* @return the addr1
*/
public String getAddr1() {
return addr1;
}
/**
* @param addr1 the addr1 to set
*/
public void setAddr1(String addr1) {
this.addr1 = addr1;
}
/**
* @return the addr2
*/
public String getAddr2() {
return addr2;
}
/**
* @param addr2 the addr2 to set
*/
public void setAddr2(String addr2) {
this.addr2 = addr2;
}
/**
* @return the city
*/
public String getCity() {
return city;
}
/**
* @param city the city to set
*/
public void setCity(String city) {
this.city = city;
}
/**
* @return the country
*/
public String getCountry() {
return country;
}
/**
* @param country the country to set
*/
public void setCountry(String country) {
this.country = country;
}
/**
* @return the email
*/
public String getEmail() {
return email;
}
/**
* @param email the email to set
*/
public void setEmail(String email) {
this.email = email;
}
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the password
*/
public String getPassword() {
return password;
}
/**
* @param password the password to set
*/
public void setPassword(String password) {
this.password = password;
}
/**
* @return the phone
*/
public String getPhone() {
return phone;
}
/**
* @param phone the phone to set
*/
public void setPhone(String phone) {
this.phone = phone;
}
/**
* @return the state
*/
public String getState() {
return state;
}
/**
* @param state the state to set
*/
public void setState(String state) {
this.state = state;
}
/**
* @return the status
*/
public String getStatus() {
return status;
}
/**
* @param status the status to set
*/
public void setStatus(String status) {
this.status = status;
}
/**
* @return the userid
*/
public String getUserid() {
return userid;
}
/**
* @param userid the userid to set
*/
public void setUserid(String userid) {
this.userid = userid;
}
/**
* @return the zip
*/
public String getZip() {
return zip;
}
/**
* @param zip the zip to set
*/
public void setZip(String zip) {
this.zip = zip;
}
public String getConfirmpassword() {
return confirmpassword;
}
public void setConfirmpassword(String confirmpassword) {
this.confirmpassword = confirmpassword;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -