com.dahuatech.icc.visitors.constant.ParamValidConstant Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-visitor Show documentation
Show all versions of java-sdk-visitor Show documentation
Dahua ICC Open API SDK for Java
package com.dahuatech.icc.visitors.constant;
/**
* program:java-sdk
*
* Author: 312013
* Date:2022-07-20 15:28
* Description: 参数校验类
*/
public enum ParamValidConstant {
//访客
VISITOR_APPOINTMENT_PARAM_ERROR("874001", "参数错误"),
;
private String code;
private String errMsg;
ParamValidConstant (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;
}
}