com.dahuatech.icc.brm.enums.CardOperation 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
The newest version!
package com.dahuatech.icc.brm.enums;
/**
* 卡信息同步子系统时 对UPDATE类型进行二级分类 帮助子系统业务处理
*/
public enum CardOperation {
ACTIVE("active"),
LOSE("lose"),
RELIEVE("relieve"),
RETURN("return")
;
private String value;
CardOperation(String value) {
this.value = value;
}
public String getValue() {
return value;
}
}