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

📄 tbuser.java

📁 一个J2EE SSH功能的实现
💻 JAVA
字号:
package com.sxjsuper.hibernate.pojo;

/**
 * TbUser entity.
 * 
 * @author MyEclipse Persistence Tools
 */

public class TbUser implements java.io.Serializable {

	// Fields

	private Long userId;
	private String userName;
	private String userPassword;
	private String trueName;
	private Long userAble;
	private String userGood;
	private String userBranch;
	private String userJob;
	private String userSex;
	private String userEmail;
	private String userTel;
	private String userAddress;
	private Long userAccesstimes;
	private String userFoundtime;

	// Constructors

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

	/** full constructor */
	public TbUser(String userName, String userPassword, String trueName,
			Long userAble, String userGood, String userBranch, String userJob,
			String userSex, String userEmail, String userTel,
			String userAddress, Long userAccesstimes, String userFoundtime) {
		this.userName = userName;
		this.userPassword = userPassword;
		this.trueName = trueName;
		this.userAble = userAble;
		this.userGood = userGood;
		this.userBranch = userBranch;
		this.userJob = userJob;
		this.userSex = userSex;
		this.userEmail = userEmail;
		this.userTel = userTel;
		this.userAddress = userAddress;
		this.userAccesstimes = userAccesstimes;
		this.userFoundtime = userFoundtime;
	}

	// Property accessors

	public Long getUserId() {
		return this.userId;
	}

	public void setUserId(Long userId) {
		this.userId = userId;
	}

	public String getUserName() {
		return this.userName;
	}

	public void setUserName(String userName) {
		this.userName = userName;
	}

	public String getUserPassword() {
		return this.userPassword;
	}

	public void setUserPassword(String userPassword) {
		this.userPassword = userPassword;
	}

	public String getTrueName() {
		return this.trueName;
	}

	public void setTrueName(String trueName) {
		this.trueName = trueName;
	}

	public Long getUserAble() {
		return this.userAble;
	}

	public void setUserAble(Long userAble) {
		this.userAble = userAble;
	}

	public String getUserGood() {
		return this.userGood;
	}

	public void setUserGood(String userGood) {
		this.userGood = userGood;
	}

	public String getUserBranch() {
		return this.userBranch;
	}

	public void setUserBranch(String userBranch) {
		this.userBranch = userBranch;
	}

	public String getUserJob() {
		return this.userJob;
	}

	public void setUserJob(String userJob) {
		this.userJob = userJob;
	}

	public String getUserSex() {
		return this.userSex;
	}

	public void setUserSex(String userSex) {
		this.userSex = userSex;
	}

	public String getUserEmail() {
		return this.userEmail;
	}

	public void setUserEmail(String userEmail) {
		this.userEmail = userEmail;
	}

	public String getUserTel() {
		return this.userTel;
	}

	public void setUserTel(String userTel) {
		this.userTel = userTel;
	}

	public String getUserAddress() {
		return this.userAddress;
	}

	public void setUserAddress(String userAddress) {
		this.userAddress = userAddress;
	}

	public Long getUserAccesstimes() {
		return this.userAccesstimes;
	}

	public void setUserAccesstimes(Long userAccesstimes) {
		this.userAccesstimes = userAccesstimes;
	}

	public String getUserFoundtime() {
		return this.userFoundtime;
	}

	public void setUserFoundtime(String userFoundtime) {
		this.userFoundtime = userFoundtime;
	}

}

⌨️ 快捷键说明

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