提交 | 用户 | age
|
6c1bfc
|
1 |
package com.platform.resultTool; |
C |
2 |
|
|
3 |
/** |
|
4 |
* 平台统一状态码 |
|
5 |
* @author chenjiahe |
|
6 |
* @Data: 2020-06-20 |
|
7 |
*/ |
|
8 |
public final class PlatformCode { |
|
9 |
|
|
10 |
/*成功*/ |
|
11 |
public static final String SUCCESS = "100"; |
|
12 |
/*错误提示*/ |
|
13 |
public static final String ERROR_TIPS="200"; |
|
14 |
/*签名错误*/ |
|
15 |
public static final String ERROR_SIGN = "201"; |
|
16 |
/*appId错误*/ |
|
17 |
public static final String ERROR_APPIS= "202"; |
|
18 |
/*参数不能为空*/ |
|
19 |
public static final String ERROR_PARAMETER_NULL = "203"; |
|
20 |
/*参数类型错误*/ |
|
21 |
public static final String ERROR_PARAMETER_TYPE = "204"; |
ad5086
|
22 |
/*访问无效*/ |
C |
23 |
public static final String ERROR_INVALID_VISIT = "205"; |
670a05
|
24 |
/*访问超时*/ |
C |
25 |
public static final String ERRO_VISIT_OVERTIMR = "667"; |
6c1bfc
|
26 |
|
C |
27 |
/*body格式错误*/ |
baa873
|
28 |
public static final String ERROR_BODY_DATA = "1008"; |
6c1bfc
|
29 |
|
C |
30 |
/*系统异常*/ |
|
31 |
public static final String ERROR_SYSTEM = "999"; |
|
32 |
|
|
33 |
|
|
34 |
} |
|
35 |
|