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

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

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

/**
 * 基础数据同步状态
 */
public enum MessageSendStat {
    //发送中
    SENDING(0),
    //阻塞中
    BLOCK(1),
    //未知
    UNKNOWN(2)
    ;

    private Integer value;

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

    public Integer getValue() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy