All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gccloud.starter.common.config.bean.Password Maven / Gradle / Ivy

package com.gccloud.starter.common.config.bean;

import lombok.Data;

/**
 * @Author tang.jiawen
 * @Date 2020/7/31
 * @Version 1.0.0
 */
@Data
public class Password {

    /**
     * 用户密码有效时间 单位:天
     */
    private Integer expireDate;

    /**
     * 用户密码提前提醒时间 单位:天
     */
    private Integer noticeDate;

    /**
     * 默认重置密码
     */
    private String defaultPwd;

    /**
     * 密码输入错误最大次数(默认为3次)
     */
    private Integer errorPasswordNum = 3;

    /**
     * 账号锁定多久时间(单位分钟)
     */
    private Integer lockTime = 60;

    /**
     * 连续输入错误密码时间(单位分钟)
     */
    private Integer inputErrorPasswordTime = 30;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy