package com.vci.frameworkcore.model;
|
|
import com.vci.frameworkcore.constant.FrameWorkBtmTypeConstant;
|
import com.vci.starter.web.annotation.VciBtmType;
|
import com.vci.starter.web.constant.FrameWorkLcStatusConstant;
|
|
import java.util.Date;
|
|
/**
|
* 原平台的密码安全策略
|
*/
|
@VciBtmType(name = FrameWorkBtmTypeConstant.SM_PASSWORD_STRATEGY,tableName = "plpasswordstrategy",lifeCycle = FrameWorkLcStatusConstant.EMTYPE_LIFE_CYCLE)
|
public class SmPasswordStrategyForPlatform1 {
|
/**
|
* 主键
|
*/
|
private String pluid;
|
|
/**
|
* 名称
|
*/
|
private String pname;
|
|
/**
|
* 长度
|
*/
|
private Integer plength;
|
|
/**
|
* 有效天数
|
*/
|
private Integer poverdueday;
|
|
/**
|
* 提醒天数
|
*/
|
private Integer premindday;
|
|
/**
|
* 密码重试次数
|
*/
|
private Integer pretrytime;
|
|
/**
|
* 锁定时间
|
*/
|
private Integer plocktime;
|
|
/**
|
* 是否默认
|
*/
|
private Integer plisdefault;
|
|
/**
|
* 描述
|
*/
|
private String pldesc;
|
|
/**
|
* 创建时间
|
*/
|
private Date plcreatetime;
|
|
/**
|
* 创建人
|
*/
|
private String plcreateuser;
|
|
/**
|
* 最后修改时间
|
*/
|
private Date plupdatetime;
|
|
/**
|
* 最后修改人
|
*/
|
private String plupdateuser;
|
|
/**
|
* 密码所需字符类型
|
*/
|
private Integer pcharspecies;
|
|
/**
|
* 授权者
|
*/
|
private String pllicensors;
|
|
/**
|
* 最大长度
|
*/
|
private Integer plmaxlength;
|
|
/**
|
* 需要的类型(必填种类字段)
|
*/
|
private Integer plrequiredtype;
|
|
public String getPluid() {
|
return pluid;
|
}
|
|
public void setPluid(String pluid) {
|
this.pluid = pluid == null ? null : pluid.trim();
|
}
|
|
public String getPname() {
|
return pname;
|
}
|
|
public void setPname(String pname) {
|
this.pname = pname == null ? null : pname.trim();
|
}
|
|
public Integer getPlength() {
|
return plength;
|
}
|
|
public void setPlength(Integer plength) {
|
this.plength = plength;
|
}
|
|
public Integer getPoverdueday() {
|
return poverdueday;
|
}
|
|
public void setPoverdueday(Integer poverdueday) {
|
this.poverdueday = poverdueday;
|
}
|
|
public Integer getPremindday() {
|
return premindday;
|
}
|
|
public void setPremindday(Integer premindday) {
|
this.premindday = premindday;
|
}
|
|
public Integer getPretrytime() {
|
return pretrytime;
|
}
|
|
public void setPretrytime(Integer pretrytime) {
|
this.pretrytime = pretrytime;
|
}
|
|
public Integer getPlocktime() {
|
return plocktime;
|
}
|
|
public void setPlocktime(Integer plocktime) {
|
this.plocktime = plocktime;
|
}
|
|
public Integer getPlisdefault() {
|
return plisdefault;
|
}
|
|
public void setPlisdefault(Integer plisdefault) {
|
this.plisdefault = plisdefault;
|
}
|
|
public String getPldesc() {
|
return pldesc;
|
}
|
|
public void setPldesc(String pldesc) {
|
this.pldesc = pldesc == null ? null : pldesc.trim();
|
}
|
|
public Date getPlcreatetime() {
|
return plcreatetime;
|
}
|
|
public void setPlcreatetime(Date plcreatetime) {
|
this.plcreatetime = plcreatetime;
|
}
|
|
public String getPlcreateuser() {
|
return plcreateuser;
|
}
|
|
public void setPlcreateuser(String plcreateuser) {
|
this.plcreateuser = plcreateuser == null ? null : plcreateuser.trim();
|
}
|
|
public Date getPlupdatetime() {
|
return plupdatetime;
|
}
|
|
public void setPlupdatetime(Date plupdatetime) {
|
this.plupdatetime = plupdatetime;
|
}
|
|
public String getPlupdateuser() {
|
return plupdateuser;
|
}
|
|
public void setPlupdateuser(String plupdateuser) {
|
this.plupdateuser = plupdateuser == null ? null : plupdateuser.trim();
|
}
|
|
public Integer getPcharspecies() {
|
return pcharspecies;
|
}
|
|
public void setPcharspecies(Integer pcharspecies) {
|
this.pcharspecies = pcharspecies;
|
}
|
|
public String getPllicensors() {
|
return pllicensors;
|
}
|
|
public void setPllicensors(String pllicensors) {
|
this.pllicensors = pllicensors == null ? null : pllicensors.trim();
|
}
|
|
public Integer getPlmaxlength() {
|
return plmaxlength;
|
}
|
|
public void setPlmaxlength(Integer plmaxlength) {
|
this.plmaxlength = plmaxlength;
|
}
|
|
public Integer getPlrequiredtype() {
|
return plrequiredtype;
|
}
|
|
public void setPlrequiredtype(Integer plrequiredtype) {
|
this.plrequiredtype = plrequiredtype;
|
}
|
|
@Override
|
public String toString() {
|
return "SmPasswordStrategyForPlatform1{" +
|
"pluid='" + pluid + '\'' +
|
", pname='" + pname + '\'' +
|
", plength=" + plength +
|
", poverdueday=" + poverdueday +
|
", premindday=" + premindday +
|
", pretrytime=" + pretrytime +
|
", plocktime=" + plocktime +
|
", plisdefault=" + plisdefault +
|
", pldesc='" + pldesc + '\'' +
|
", plcreatetime=" + plcreatetime +
|
", plcreateuser='" + plcreateuser + '\'' +
|
", plupdatetime=" + plupdatetime +
|
", plupdateuser='" + plupdateuser + '\'' +
|
", pcharspecies=" + pcharspecies +
|
", pllicensors='" + pllicensors + '\'' +
|
", plmaxlength=" + plmaxlength +
|
", plrequiredtype=" + plrequiredtype +
|
'}';
|
}
|
}
|