📄 abstractpasswordhistory.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 + -