package cn.huge.base.common.constant;
|
|
/**
|
* @title: api请求返回工相关常量类
|
* @description: api请求返回工相关常量
|
* @company: hugeinfo
|
* @author: liyj
|
* @time: 2021-11-05 16:51:48
|
* @version: 1.0.0
|
*/
|
public class ReturnConsts {
|
|
/**
|
* 正常返回
|
*/
|
public static final int OK = 0;
|
/**
|
* 异常返回
|
*/
|
public static final int FAIL = -1;
|
/**
|
* 用户未登录、失效
|
*/
|
public static final int USER_ERROR = 401;
|
/**
|
* 不存在
|
*/
|
public static final int NULL = 404;
|
/**
|
* 错误
|
*/
|
public static final int ERROR = 409;
|
/**
|
* 检测重复
|
*/
|
public static final int ERROR_5 = 105;
|
}
|
/**
|
* -------------------_ooOoo_-------------------
|
* ------------------o8888888o------------------
|
* ------------------88" . "88------------------
|
* ------------------(| -_- |)------------------
|
* ------------------O\ = /O------------------
|
* ---------------____/`---'\____---------------
|
* -------------.' \\| |// `.-------------
|
* ------------/ \\||| : |||// \------------
|
* -----------/ _||||| -:- |||||- \-----------
|
* -----------| | \\\ - /// | |-----------
|
* -----------| \_| ''\---/'' | |-----------
|
* -----------\ .-\__ `-` ___/-. /-----------
|
* ---------___`. .' /--.--\ `. . __----------
|
* ------."" '< `.___\_<|>_/___.' >'"".-------
|
* -----| | : `- \`.;`\ _ /`;.`/ - ` : | |-----
|
* -----\ \ `-. \_ __\ /__ _/ .-` / /-----
|
* ======`-.____`-.___\_____/___.-`____.-'======
|
* -------------------`=---='
|
* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
* ---------佛祖保佑---hugeinfo---永无BUG----------
|
*/
|