⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 abstractuser.java.svn-base

📁 在线书库系统 查看图书 编写文章 管理员管理
💻 SVN-BASE
字号:
package StoryManage.Dal;

import java.util.Date;

/**
 * AbstractUser entity provides the base persistence definition of the User
 * entity.
 * 
 * @author MyEclipse Persistence Tools
 */

public abstract class AbstractUser 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 Date shieldLast;
	private Integer isPass;
	private Integer isVote;

	// Constructors

	/** default constructor */
	public AbstractUser() {
	}

	/** minimal constructor */
	public AbstractUser(Date regTime, Integer money, Integer integral,
			String regName, String password, Date lastLoginTime,
			Integer loginCount, Integer isShield, Integer isPass, Integer isVote) {
		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;
	}

	/** full constructor */
	public AbstractUser(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, Date shieldLast, Integer isPass,
			Integer isVote) {
		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;
	}

	// 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 Date getShieldLast() {
		return this.shieldLast;
	}

	public void setShieldLast(Date 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;
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -