1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
package com.vci.frameworkcore.pagemodel;
 
import com.vci.starter.web.pagemodel.BaseModelVO;
 
/**
 * 密码安全策略显示对象
 * @author weidy
 * @date 2020/3/1
 */
public class SmPasswordStrategyVO  extends BaseModelVO {
 
    /**
     * 禁止修改这个值
     */
    private static final long serialVersionUID = -389835469056130052L;
 
    /**
     * 最小长度
     */
    private Integer minLength;
 
    /**
     * 有效天数
     */
    private Integer validDay;
 
    /**
     * 提醒天数
     */
    private Integer remindDay;
 
    /**
     * 可以重试的次数
     */
    private Integer retryTime;
 
    /**
     * 锁定时间
     */
    private Integer lockTime;
 
    /**
     * 是否为默认
     */
    private boolean defaultFlag;
 
    /**
     * 密码的最大长度
     */
    private Integer maxLength;
 
    /**
     * 密码字符所需类型
     */
    private String requireCharType;
 
    /**
     * 密码所需字符种类个数
     */
    private Integer requireCharCount;
 
    /**
     * 授权者
     */
    private String licensors;
 
    public void setLicensors(String licensors) {
        this.licensors = licensors;
    }
 
    public String getLicensors() {
        return licensors;
    }
 
    public String getRequireCharType() {
        return requireCharType;
    }
 
    public Integer getRequireCharCount() {
        return requireCharCount;
    }
 
    public void setRequireCharCount(Integer requireCharCount) {
        this.requireCharCount = requireCharCount;
    }
 
    public Integer getMinLength() {
        return minLength;
    }
 
    public void setMinLength(Integer minLength) {
        this.minLength = minLength;
    }
 
    public Integer getValidDay() {
        return validDay;
    }
 
    public void setValidDay(Integer validDay) {
        this.validDay = validDay;
    }
 
    public Integer getRemindDay() {
        return remindDay;
    }
 
    public void setRemindDay(Integer remindDay) {
        this.remindDay = remindDay;
    }
 
    public Integer getRetryTime() {
        return retryTime;
    }
 
    public void setRetryTime(Integer retryTime) {
        this.retryTime = retryTime;
    }
 
    public Integer getLockTime() {
        return lockTime;
    }
 
    public void setLockTime(Integer lockTime) {
        this.lockTime = lockTime;
    }
 
    public boolean isDefaultFlag() {
        return defaultFlag;
    }
 
    public void setDefaultFlag(boolean defaultFlag) {
        this.defaultFlag = defaultFlag;
    }
 
    public Integer getMaxLength() {
        return maxLength;
    }
 
    public void setMaxLength(Integer maxLength) {
        this.maxLength = maxLength;
    }
 
    public String getRequireCharType(Integer plrequiredtype) {
        return requireCharType;
    }
 
    public void setRequireCharType(String requireCharType) {
        this.requireCharType = requireCharType;
    }
 
    @Override
    public String toString() {
        return "SmPasswordStrategyVO{" +
                "minLength=" + minLength +
                ", validDay=" + validDay +
                ", remindDay=" + remindDay +
                ", retryTime=" + retryTime +
                ", lockTime=" + lockTime +
                ", defaultFlag=" + defaultFlag +
                ", maxLength=" + maxLength +
                ", requireCharType='" + requireCharType + '\'' +
                ", requireCharCount=" + requireCharCount +
                '}';
    }
}