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

com.power.common.enums.ResultCode Maven / Gradle / Ivy

There is a newer version: 2.2.3
Show newest version
package com.power.common.enums;

/**
 * 常用http状态码
 */
public enum ResultCode {
    SUCCESS(200),
    FAIL(400),
    UNAUTHORIZED(401),
    NOT_FOUND(404),
    INTERNAL_SERVER_ERROR(500);

    public int code;

    ResultCode(int code) {
        this.code = code;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy