?? user.java
字號:
package com.wlpava.business;
/**
* User generated by MyEclipse - Hibernate Tools
*/
public class User implements IUser, java.io.Serializable {
// Fields
private static final long serialVersionUID = 1L;
private int cid;
private String userName;
private String password;
private String email;
private String tel;
private String birthday;
private String intro;
// Constructors
/** default constructor */
public User() {
}
/** minimal constructor */
public User(String userName, String password) {
this.userName = userName;
this.password = password;
}
/** full constructor */
public User(String userName, String password, String email, String tel,
String birthday, String intro) {
this.userName = userName;
this.password = password;
this.email = email;
this.tel = tel;
this.birthday = birthday;
this.intro = intro;
}
// Property accessors
public int getCid() {
return this.cid;
}
public void setCid(int cid) {
this.cid = cid;
}
public String getUserName() {
return this.userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
}
public String getEmail() {
return this.email;
}
public void setEmail(String email) {
this.email = email;
}
public String getTel() {
return this.tel;
}
public void setTel(String tel) {
this.tel = tel;
}
public String getBirthday() {
return this.birthday;
}
public void setBirthday(String birthday) {
this.birthday = birthday;
}
public String getIntro() {
return this.intro;
}
public void setIntro(String intro) {
this.intro = intro;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -