From 18e2c156de069eaee2f989e09fda061841aae605 Mon Sep 17 00:00:00 2001 From: 田源 <lastanimals@163.com> Date: 星期四, 11 七月 2024 11:35:33 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/frameworkcore/model/SmPasswordStrategyForPlatform1.java | 79 ++++++++++++++++++++++++++++----------- 1 files changed, 57 insertions(+), 22 deletions(-) diff --git a/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/frameworkcore/model/SmPasswordStrategyForPlatform1.java b/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/frameworkcore/model/SmPasswordStrategyForPlatform1.java index 343d71d..9c54ed9 100644 --- a/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/frameworkcore/model/SmPasswordStrategyForPlatform1.java +++ b/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/frameworkcore/model/SmPasswordStrategyForPlatform1.java @@ -1,8 +1,11 @@ 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; @@ -11,90 +14,122 @@ */ @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; @@ -168,11 +203,11 @@ 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; } @@ -184,11 +219,11 @@ 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; } @@ -200,12 +235,12 @@ 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() { @@ -248,7 +283,7 @@ ", plcreateuser='" + plcreateuser + '\'' + ", plupdatetime=" + plupdatetime + ", plupdateuser='" + plupdateuser + '\'' + - ", pcharspecies=" + pcharspecies + + ", plchartypes=" + plchartypes + ", pllicensors='" + pllicensors + '\'' + ", plmaxlength=" + plmaxlength + ", plrequiredtype=" + plrequiredtype + -- Gitblit v1.9.3