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

com.dahuatech.icc.visitors.constant.ParamValidConstant Maven / Gradle / Ivy

There is a newer version: 1.0.13.7
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy