| | |
| | | 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 Integer plength; |
| | | |
| | | /** |
| | | * |
| | | * 有效天数 |
| | | */ |
| | | private Integer poverdueday; |
| | | |
| | |
| | | private Integer pcharspecies; |
| | | |
| | | /** |
| | | * 许可 |
| | | * 授权者 |
| | | */ |
| | | private String pllicensors; |
| | | |
| | |
| | | private Integer plmaxlength; |
| | | |
| | | /** |
| | | * 需要的类型 |
| | | * 需要的类型(必填种类字段) |
| | | */ |
| | | private Integer plrequiredtype; |
| | | |