📄 emipwinfo.java
字号:
package com.v512.hibernate;
import java.util.Date;
/**
* EmIpwInfo generated by MyEclipse Persistence Tools
*/
public class EmIpwInfo implements java.io.Serializable {
// Fields
private String pwdIdx;
private String ipw;
private String descStr;
private String pwdType;
private Date expireDate;
// Constructors
public EmIpwInfo() {
}
public EmIpwInfo(String ipw, String descStr, String pwdType, Date expireDate) {
this.ipw = ipw;
this.descStr = descStr;
this.pwdType = pwdType;
this.expireDate = expireDate;
}
// Property accessors
public String getPwdIdx() {
return this.pwdIdx;
}
public void setPwdIdx(String pwdIdx) {
this.pwdIdx = pwdIdx;
}
public String getIpw() {
return this.ipw;
}
public void setIpw(String ipw) {
this.ipw = ipw;
}
public String getDescStr() {
return this.descStr;
}
public void setDescStr(String descStr) {
this.descStr = descStr;
}
public String getPwdType() {
return this.pwdType;
}
public void setPwdType(String pwdType) {
this.pwdType = pwdType;
}
public Date getExpireDate() {
return this.expireDate;
}
public void setExpireDate(Date expireDate) {
this.expireDate = expireDate;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -