| | |
| | | package com.vci.frameworkcore.model; |
| | | |
| | | import com.vci.frameworkcore.constant.FrameWorkBtmTypeConstant; |
| | | import com.vci.starter.web.annotation.Column; |
| | | import com.vci.starter.web.annotation.VciBtmType; |
| | | import com.vci.starter.web.annotation.VciFieldType; |
| | | import com.vci.starter.web.constant.FrameWorkLcStatusConstant; |
| | | import com.vci.starter.web.enumpck.VciFieldTypeEnum; |
| | | |
| | | import java.util.Date; |
| | | |
| | |
| | | */ |
| | | @VciBtmType(name = FrameWorkBtmTypeConstant.SM_PASSWORD_STRATEGY,tableName = "plpasswordstrategy",lifeCycle = FrameWorkLcStatusConstant.EMTYPE_LIFE_CYCLE) |
| | | public class SmPasswordStrategyForPlatform1 { |
| | | |
| | | /** |
| | | * 主键 |
| | | */ |
| | | @Column(name = "pluid") |
| | | private String pluid; |
| | | |
| | | /** |
| | | * 名称 |
| | | */ |
| | | @Column(name = "pname") |
| | | private String pname; |
| | | |
| | | /** |
| | | * 长度 |
| | | */ |
| | | @Column(range = ">0",name = "plength") |
| | | private Integer plength; |
| | | |
| | | /** |
| | | * 最大长度 |
| | | */ |
| | | @Column(range = ">0",name = "PLMAXLENGTH") |
| | | private Integer plmaxlength; |
| | | |
| | | /** |
| | | * 有效天数 |
| | | */ |
| | | @Column(range = ">0",name = "POVERDUEDAY") |
| | | private Integer poverdueday; |
| | | |
| | | /** |
| | | * 提醒天数 |
| | | */ |
| | | @Column(range = ">0",name = "PREMINDDAY") |
| | | private Integer premindday; |
| | | |
| | | /** |
| | | * 密码重试次数 |
| | | */ |
| | | @Column(range = ">0",name = "PRETRYTIME") |
| | | private Integer pretrytime; |
| | | |
| | | /** |
| | | * 锁定时间 |
| | | */ |
| | | @Column(range = ">0",name = "PLOCKTIME") |
| | | private Integer plocktime; |
| | | |
| | | /** |
| | | * 是否默认 |
| | | */ |
| | | @Column(name = "PLISDEFAULT") |
| | | private Integer plisdefault; |
| | | |
| | | /** |
| | | * 描述 |
| | | */ |
| | | @Column(name = "PLDESC") |
| | | private String pldesc; |
| | | |
| | | /** |
| | | * 创建时间 |
| | | */ |
| | | private Date plcreatetime; |
| | | @Column( |
| | | nullable = false, |
| | | name = "plcreatetime" |
| | | ) |
| | | @VciFieldType(VciFieldTypeEnum.VTDateTime) |
| | | private Long plcreatetime; |
| | | |
| | | /** |
| | | * 创建人 |
| | | */ |
| | | @Column( |
| | | length = 50, |
| | | nullable = false, |
| | | name = "plcreateuser" |
| | | ) |
| | | private String plcreateuser; |
| | | |
| | | /** |
| | | * 最后修改时间 |
| | | */ |
| | | private Date plupdatetime; |
| | | @Column( |
| | | name = "plupdatetime" |
| | | ) |
| | | @VciFieldType(VciFieldTypeEnum.VTDateTime) |
| | | private Long plupdatetime; |
| | | |
| | | /** |
| | | * 最后修改人 |
| | | */ |
| | | @Column( |
| | | length = 50, |
| | | nullable = false, |
| | | name = "plupdateuser" |
| | | ) |
| | | private String plupdateuser; |
| | | |
| | | /** |
| | | * 密码所需字符类型 |
| | | */ |
| | | private Integer pcharspecies; |
| | | @Column(name = "PLCHARTYPES") |
| | | private Integer plchartypes; |
| | | |
| | | /** |
| | | * 需要的类型(必填种类字段) |
| | | */ |
| | | @Column(name = "PLREQUIREDTYPE") |
| | | private Integer plrequiredtype; |
| | | |
| | | /** |
| | | * 授权者 |
| | | */ |
| | | private String pllicensors; |
| | | |
| | | /** |
| | | * 最大长度 |
| | | */ |
| | | private Integer plmaxlength; |
| | | |
| | | /** |
| | | * 需要的类型(必填种类字段) |
| | | */ |
| | | private Integer plrequiredtype; |
| | | |
| | | public String getPluid() { |
| | | return pluid; |
| | |
| | | this.pldesc = pldesc == null ? null : pldesc.trim(); |
| | | } |
| | | |
| | | public Date getPlcreatetime() { |
| | | public Long getPlcreatetime() { |
| | | return plcreatetime; |
| | | } |
| | | |
| | | public void setPlcreatetime(Date plcreatetime) { |
| | | public void setPlcreatetime(Long plcreatetime) { |
| | | this.plcreatetime = plcreatetime; |
| | | } |
| | | |
| | |
| | | this.plcreateuser = plcreateuser == null ? null : plcreateuser.trim(); |
| | | } |
| | | |
| | | public Date getPlupdatetime() { |
| | | public Long getPlupdatetime() { |
| | | return plupdatetime; |
| | | } |
| | | |
| | | public void setPlupdatetime(Date plupdatetime) { |
| | | public void setPlupdatetime(Long plupdatetime) { |
| | | this.plupdatetime = plupdatetime; |
| | | } |
| | | |
| | |
| | | this.plupdateuser = plupdateuser == null ? null : plupdateuser.trim(); |
| | | } |
| | | |
| | | public Integer getPcharspecies() { |
| | | return pcharspecies; |
| | | public Integer getPlchartypes() { |
| | | return plchartypes; |
| | | } |
| | | |
| | | public void setPcharspecies(Integer pcharspecies) { |
| | | this.pcharspecies = pcharspecies; |
| | | public void setPlchartypes(Integer pcharspecies) { |
| | | this.plchartypes = pcharspecies; |
| | | } |
| | | |
| | | public String getPllicensors() { |
| | |
| | | ", plcreateuser='" + plcreateuser + '\'' + |
| | | ", plupdatetime=" + plupdatetime + |
| | | ", plupdateuser='" + plupdateuser + '\'' + |
| | | ", pcharspecies=" + pcharspecies + |
| | | ", plchartypes=" + plchartypes + |
| | | ", pllicensors='" + pllicensors + '\'' + |
| | | ", plmaxlength=" + plmaxlength + |
| | | ", plrequiredtype=" + plrequiredtype + |