Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/frameworkcore/pagemodel/SmPasswordStrategyVO.java
@@ -15,50 +15,67 @@
    private static final long serialVersionUID = -389835469056130052L;
    /**
     * 最小长度
     * 最小长度 :长度(plength)
     */
    private Integer minLength;
    /**
     * 有效天数
     * 有效天数 :过期时间(poverdueday)
     */
    private Integer validDay;
    /**
     * 提醒天数
     * 提醒天数 (premindday)
     */
    private Integer remindDay;
    /**
     * 可以重试的次数
     * 可以重试的次数 :密码重试次数(pretrytime)
     */
    private Integer retryTime;
    /**
     * 锁定时间
     * 锁定时间 :(plocktime)
     */
    private Integer lockTime;
    /**
     * 是否为默认
     * 是否为默认 :(plisdefault)
     */
    private boolean defaultFlag;
    /**
     * 密码的最大长度
     * 密码的最大长度 : 最大长度(plmaxlength)
     */
    private Integer maxLength;
    /**
     * 密码字符所需类型
     * 密码字符所需类型 :(pcharspecies) 字符类型组合,0x01-数字,0x02-小写字母,0x04-大写字母,0x08-符号
     */
    private String requireCharType;
    /**
     * 密码所需字符种类个数
     * 密码字符所需类型:组合方式显示值
     */
    private String requireCharTypeText;
    /**
     * 密码所需字符种类个数 :(plrequiredtype)
     */
    private Integer requireCharCount;
    /**
     * 授权者
     */
    private String licensors;
    public void setLicensors(String licensors) {
        this.licensors = licensors;
    }
    public String getLicensors() {
        return licensors;
    }
    public Integer getRequireCharCount() {
        return requireCharCount;
@@ -132,6 +149,14 @@
        this.requireCharType = requireCharType;
    }
    public String getRequireCharTypeText() {
        return requireCharTypeText;
    }
    public void setRequireCharTypeText(String requireCharTypeText) {
        this.requireCharTypeText = requireCharTypeText;
    }
    @Override
    public String toString() {
        return "SmPasswordStrategyVO{" +