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

📄 abstractpasswordhistory.java

📁 利用STRUTS2+SPRING+HIBERNATE/IBATIS建立的基本开发框架
💻 JAVA
字号:
package com.sunwah.baseapp.system.model;

import java.util.Date;

/**
 * AbstractPasswordHistory entity provides the base persistence definition of
 * the PasswordHistory entity.
 * 
 * @author MyEclipse Persistence Tools
 */

public abstract class AbstractPasswordHistory implements java.io.Serializable {

	// Fields

	private Long pwHisId;
	private Users users;
	private String password;
	private Date pwEffDate;
	private Date pwExpDate;
	private Long modifyUserId;
	private Date modifyDate;

	// Constructors

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

	/** full constructor */
	public AbstractPasswordHistory(Users users, String password,
			Date pwEffDate, Date pwExpDate, Long modifyUserId, Date modifyDate) {
		this.users = users;
		this.password = password;
		this.pwEffDate = pwEffDate;
		this.pwExpDate = pwExpDate;
		this.modifyUserId = modifyUserId;
		this.modifyDate = modifyDate;
	}

	// Property accessors

	public Long getPwHisId() {
		return this.pwHisId;
	}

	public void setPwHisId(Long pwHisId) {
		this.pwHisId = pwHisId;
	}

	public Users getUsers() {
		return this.users;
	}

	public void setUsers(Users users) {
		this.users = users;
	}

	public String getPassword() {
		return this.password;
	}

	public void setPassword(String password) {
		this.password = password;
	}

	public Date getPwEffDate() {
		return this.pwEffDate;
	}

	public void setPwEffDate(Date pwEffDate) {
		this.pwEffDate = pwEffDate;
	}

	public Date getPwExpDate() {
		return this.pwExpDate;
	}

	public void setPwExpDate(Date pwExpDate) {
		this.pwExpDate = pwExpDate;
	}

	public Long getModifyUserId() {
		return this.modifyUserId;
	}

	public void setModifyUserId(Long modifyUserId) {
		this.modifyUserId = modifyUserId;
	}

	public Date getModifyDate() {
		return this.modifyDate;
	}

	public void setModifyDate(Date modifyDate) {
		this.modifyDate = modifyDate;
	}

}

⌨️ 快捷键说明

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