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

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

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

/**
 * 订阅状态
 */
public enum SubscribeStat {
    //订阅
    SUB(1),
    //取消订阅
    CANCEL(2);

    private Integer stat;

    SubscribeStat(Integer stat) {
        this.stat = stat;
    }

    public Integer getStat() {
        return stat;
    }}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy