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

cn.bootx.platform.starter.auth.entity.UserStatus Maven / Gradle / Ivy

There is a newer version: 1.3.6.2
Show newest version
package cn.bootx.platform.starter.auth.entity;

import lombok.Getter;
import lombok.Setter;
import lombok.experimental.Accessors;

import java.util.HashMap;

/**
 * 用户状态上下文
 * @author xxm
 * @since 2023/11/25
 */
@Getter
@Setter
@Accessors(chain = true)
public class UserStatus extends HashMap {

    /** 是否初始密码 */
    private boolean initialPassword;

    /** 密码是否过期 */
    private boolean expirePassword;


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy