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

com.zyy.common.util.ApiCode Maven / Gradle / Ivy

package com.zyy.common.util;

/**
 * Created by zlp on 2020/02/25
 */
public enum ApiCode {
    SUCCESS(0, "操作成功"),
    FAILURE(1, "操作失败"),
    LOGIN_OUT(50008, "登录已过期");

    private final int code;
    private final String message;

    ApiCode(int code, String message) {
        this.code = code;
        this.message = message;
    }

    public int getCode() {
        return this.code;
    }

    public String getMessage() {
        return this.message;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy