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

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

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

/**
 *  AllDataStat
 * 全量数据是否同步
 **/
public enum  AllDataStat {
    //同步
    TRUE(1),
    //不同步
    FALSE(0);

    private Integer stat;

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

    public Integer getStat() {
        return stat;
    }

    public void setStat(Integer stat) {
        this.stat = stat;
    }}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy