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

com.dahuatech.icc.brm.enums.ParamConstant Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy