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

titan.lightbatis.common.ResultCode Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package titan.lightbatis.common;

/**
 * 枚举了一些常用API操作码
 * Created by macro on 2019/4/19.
 */
public enum ResultCode implements IErrorCode {
    SUCCESS(200, "操作成功"),
    FAILED(500, "操作失败"),
    VALIDATE_FAILED(404, "参数检验失败"),
    UNAUTHORIZED(401, "暂未登录或token已经过期"),
    UNREGISTERED(402,"用户未注册"),
    DETECT_FAILED(410,"检测失败"),
    FORBIDDEN(403, "没有相关权限");

    private long code;
    private String message;

    private ResultCode(long code, String message) {
        this.code = code;
        this.message = message;
    }

    @Override
    public long getCode() {
        return code;
    }

    @Override
    public String getMessage() {
        return message;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy