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

io.afu.common.constant.SignEnum Maven / Gradle / Ivy

package io.afu.common.constant;

public enum SignEnum {

    SIGN_NOT_VAILED("SIGN_NOT_VAILED",90001,"签名验证错误"),
    SIGN_NOT_SET("SIGN_NOT_SET",90002,"签名参数为空"),





    ;
    private String name;

    private Integer code;

    private String msg;

    SignEnum(String name, Integer code, String msg) {
        this.name = name;
        this.code = code;
        this.msg = msg;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Integer getCode() {
        return code;
    }

    public void setCode(Integer code) {
        this.code = code;
    }

    public String getMsg() {
        return msg;
    }

    public void setMsg(String msg) {
        this.msg = msg;
    }



}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy