增加ICP调用第三方API chinaz 查询并存储结果到数据库,批量查询,文件查询,文件查询导出 CN-664
This commit is contained in:
77
src/main/java/com/mesasoft/cn/sketch/enums/ResultStatus.java
Normal file
77
src/main/java/com/mesasoft/cn/sketch/enums/ResultStatus.java
Normal file
@@ -0,0 +1,77 @@
|
||||
package com.mesasoft.cn.sketch.enums;
|
||||
|
||||
/**
|
||||
* @Description: 返回码定义
|
||||
* 规定:
|
||||
* #1表示成功
|
||||
* #1001~1999 区间表示参数错误
|
||||
* #2001~2999 区间表示用户错误
|
||||
* #3001~3999 区间表示接口异常
|
||||
* @Date Create in 2019/7/22 19:28
|
||||
*/
|
||||
public enum ResultStatus {
|
||||
/* 成功 */
|
||||
SUCCESS(200, "success"),
|
||||
|
||||
/* 默认失败 */
|
||||
COMMON_FAIL(400, "fail"),
|
||||
FAIL(500, "request fail"),
|
||||
|
||||
/* 参数错误:1000~1999 */
|
||||
PARAM_NOT_VALID(1001, "参数无效"),
|
||||
PARAM_IS_BLANK(1002, "参数为空"),
|
||||
PARAM_TYPE_ERROR(1003, "参数类型错误"),
|
||||
PARAM_NOT_COMPLETE(1004, "参数缺失"),
|
||||
|
||||
/* 用户错误 */
|
||||
USER_NOT_LOGIN(2001, "用户未登录"),
|
||||
USER_ACCOUNT_EXPIRED(2002, "账号已过期"),
|
||||
USER_CREDENTIALS_ERROR(2003, "密码错误"),
|
||||
USER_CREDENTIALS_EXPIRED(2004, "密码过期"),
|
||||
USER_ACCOUNT_DISABLE(2005, "账号不可用"),
|
||||
USER_ACCOUNT_LOCKED(2006, "账号被锁定"),
|
||||
USER_ACCOUNT_NOT_EXIST(2007, "账号不存在"),
|
||||
USER_ACCOUNT_ALREADY_EXIST(2008, "账号已存在"),
|
||||
USER_ACCOUNT_USE_BY_OTHERS(2009, "账号下线"),
|
||||
|
||||
/* 业务错误 */
|
||||
NO_PERMISSION(3001, "没有权限");
|
||||
private Integer status;
|
||||
private String message;
|
||||
|
||||
ResultStatus(Integer status, String message) {
|
||||
this.status = status;
|
||||
this.message = message;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getMessage() {
|
||||
return message;
|
||||
}
|
||||
|
||||
public void setMessage(String message) {
|
||||
this.message = message;
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据status获取message
|
||||
*
|
||||
* @param status
|
||||
* @return
|
||||
*/
|
||||
public static String getMessageBystatus(Integer status) {
|
||||
for (ResultStatus ele : values()) {
|
||||
if (ele.getStatus().equals(status)) {
|
||||
return ele.getMessage();
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user