?? shopuser.java
字號:
package ch09.web.book;
/**
* @author <a href='chengweits@hotmail.com'>chengwei</a>
* 個人用戶資料BEAN
*/
public class shopuser {
private long Id; //ID序列號
private String UserName; //購物用戶名
private String PassWord; //用戶密碼
private String Names; //用戶聯(lián)系用姓名
private String Sex; //用戶性別
private String Address; //用戶聯(lián)系地址
private String Phone; //用戶聯(lián)系電話
private String Post; //用戶聯(lián)系郵編
private String Email; //用戶電子郵件
private String RegTime; //用戶注冊時間
private String RegIpAddress; //用戶注冊時IP地址
public shopuser() {
Id = 0;
UserName = "";
PassWord = "";
Names = "";
Sex = "";
Address = "";
Phone = "";
Post = "";
Email = "";
RegTime = "";
RegIpAddress = "";
}
public long getId() {
return Id;
}
public void setId(long newId) {
this.Id = newId;
}
public String getUserName() {
return UserName;
}
public void setUserName(String newUserName) {
this.UserName = newUserName;
}
public String getPassWord() {
return PassWord;
}
public void setPassWord(String newPassWord) {
this.PassWord = newPassWord;
}
public String getNames() {
return Names;
}
public void setNames(String newNames) {
this.Names = newNames;
}
public String getSex() {
return Sex;
}
public void setSex(String newSex) {
this.Sex = newSex;
}
public String getAddress() {
return Address;
}
public void setAddress(String newAddress) {
this.Address = newAddress;
}
public String getPhone() {
return Phone;
}
public void setPhone(String newPhone) {
this.Phone = newPhone;
}
public String getPost() {
return Post;
}
public void setPost(String newPost) {
this.Post = newPost;
}
public String getEmail() {
return Email;
}
public void setEmail(String newEmail) {
this.Email = newEmail;
}
public String getRegTime() {
return RegTime;
}
public void setRegTime(String newRegTime) {
this.RegTime = newRegTime;
}
public String getRegIpAddress() {
return RegIpAddress;
}
public void setRegIpAddress(String newRegIpAddress) {
this.RegIpAddress = newRegIpAddress;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -