com.dahuatech.icc.brm.enums.DataSynStat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-brm Show documentation
Show all versions of java-sdk-brm Show documentation
Dahua ICC Open API SDK for Java
/*
*
* *********************** 版权声明 ***********************************
*
* 版权所有:浙江大华技术股份有限公司
* ©CopyRight DahuaTech 2019
*
* *********************************************************************
*
*/
package com.dahuatech.icc.brm.enums;
/**
* 基础数据同步状态
*/
public enum DataSynStat {
//同步中
SYNC(0),
//成功
SUCCESS(1),
//失败
FAIL(2)
;
private Integer value;
DataSynStat(Integer value) {
this.value = value;
}
public Integer getValue() {
return value;
}
}