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

com.dahuatech.icc.brm.enums.UserStat Maven / Gradle / Ivy

The newest version!
/*
 *
 *  *********************** 版权声明 ***********************************
 *
 *  版权所有:浙江大华技术股份有限公司
 *  ©CopyRight DahuaTech 2019
 *
 *  *********************************************************************
 *
 */
package com.dahuatech.icc.brm.enums;

/**
 * 用户状态
 */
public enum UserStat {
    //正常状态
    NORMAL(0),
    //锁定
    LOCKING(1),
    //冻结
    FROZEN(2)
    ;

    private Integer value;

    UserStat(Integer value) {
        this.value = value;
    }

    public Integer getValue() {
        return value;
    }}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy