com.dahuatech.icc.brm.enums.ParamConstant 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;
/**
* program:java-sdk
*
* Author: 312013
* Date:2022-07-21 14:29
* Description: 事件中心参数枚举类
*/
public enum ParamConstant {
//人员
EVENT_DEL_PARAM_ERROR("875001","参数错误"),
;
private String code;
private String errMsg;
ParamConstant(String code, String errMsg){
this.code = code;
this.errMsg = errMsg;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getErrMsg() {
return errMsg;
}
public void setErrMsg(String errMsg) {
this.errMsg = errMsg;
}
}