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

com.suchtool.nicecommon.core.constant.ResultCode Maven / Gradle / Ivy

There is a newer version: 1.0.11
Show newest version
package com.suchtool.nicecommon.core.constant;

import lombok.Getter;

@Getter
public enum ResultCode {
    SUCCESS(1000, "访问成功"),

    BUSINESS_FAIL(2001, "业务异常"),
    SYSTEM_FAIL(2005, "系统异常"),
    ;

    private final int code;
    private final String description;

    ResultCode(int code, String description) {
        this.code = code;
        this.description = description;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy