📄 abstractreguser.java
字号:
package StoryManage.Dal;
import java.util.Date;
/**
* AbstractRegUser entity provides the base persistence definition of the
* RegUser entity.
*
* @author MyEclipse Persistence Tools
*/
public abstract class AbstractRegUser implements java.io.Serializable {
// Fields
private Integer userId;
private String realName;
private Integer sex;
private Date birth;
private Date regTime;
private Integer money;
private Integer integral;
private String regName;
private String password;
private String email;
private String qq;
private Date lastLoginTime;
private Integer loginCount;
private Integer isShield;
private Date shieldTime;
private Integer shieldLast;
private Integer isPass;
private Integer isVote;
private String question;
private String answer;
// Constructors
/** default constructor */
public AbstractRegUser() {
}
/** minimal constructor */
public AbstractRegUser(Date regTime, Integer money, Integer integral,
String regName, String password, Date lastLoginTime,
Integer loginCount, Integer isShield, Integer isPass,
Integer isVote, String question, String answer) {
this.regTime = regTime;
this.money = money;
this.integral = integral;
this.regName = regName;
this.password = password;
this.lastLoginTime = lastLoginTime;
this.loginCount = loginCount;
this.isShield = isShield;
this.isPass = isPass;
this.isVote = isVote;
this.question = question;
this.answer = answer;
}
/** full constructor */
public AbstractRegUser(String realName, Integer sex, Date birth,
Date regTime, Integer money, Integer integral, String regName,
String password, String email, String qq, Date lastLoginTime,
Integer loginCount, Integer isShield, Date shieldTime,
Integer shieldLast, Integer isPass, Integer isVote,
String question, String answer) {
this.realName = realName;
this.sex = sex;
this.birth = birth;
this.regTime = regTime;
this.money = money;
this.integral = integral;
this.regName = regName;
this.password = password;
this.email = email;
this.qq = qq;
this.lastLoginTime = lastLoginTime;
this.loginCount = loginCount;
this.isShield = isShield;
this.shieldTime = shieldTime;
this.shieldLast = shieldLast;
this.isPass = isPass;
this.isVote = isVote;
this.question = question;
this.answer = answer;
}
// Property accessors
public Integer getUserId() {
return this.userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
public String getRealName() {
return this.realName;
}
public void setRealName(String realName) {
this.realName = realName;
}
public Integer getSex() {
return this.sex;
}
public void setSex(Integer sex) {
this.sex = sex;
}
public Date getBirth() {
return this.birth;
}
public void setBirth(Date birth) {
this.birth = birth;
}
public Date getRegTime() {
return this.regTime;
}
public void setRegTime(Date regTime) {
this.regTime = regTime;
}
public Integer getMoney() {
return this.money;
}
public void setMoney(Integer money) {
this.money = money;
}
public Integer getIntegral() {
return this.integral;
}
public void setIntegral(Integer integral) {
this.integral = integral;
}
public String getRegName() {
return this.regName;
}
public void setRegName(String regName) {
this.regName = regName;
}
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 getQq() {
return this.qq;
}
public void setQq(String qq) {
this.qq = qq;
}
public Date getLastLoginTime() {
return this.lastLoginTime;
}
public void setLastLoginTime(Date lastLoginTime) {
this.lastLoginTime = lastLoginTime;
}
public Integer getLoginCount() {
return this.loginCount;
}
public void setLoginCount(Integer loginCount) {
this.loginCount = loginCount;
}
public Integer getIsShield() {
return this.isShield;
}
public void setIsShield(Integer isShield) {
this.isShield = isShield;
}
public Date getShieldTime() {
return this.shieldTime;
}
public void setShieldTime(Date shieldTime) {
this.shieldTime = shieldTime;
}
public Integer getShieldLast() {
return this.shieldLast;
}
public void setShieldLast(Integer shieldLast) {
this.shieldLast = shieldLast;
}
public Integer getIsPass() {
return this.isPass;
}
public void setIsPass(Integer isPass) {
this.isPass = isPass;
}
public Integer getIsVote() {
return this.isVote;
}
public void setIsVote(Integer isVote) {
this.isVote = isVote;
}
public String getQuestion() {
return this.question;
}
public void setQuestion(String question) {
this.question = question;
}
public String getAnswer() {
return this.answer;
}
public void setAnswer(String answer) {
this.answer = answer;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -