chenjiahe
2021-10-21 6c1bfcd25d3bafcdf2765c5c9d0709a8f423eac4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.platform.resultTool;
 
/**
 * 平台统一状态码
 * @author chenjiahe
 * @Data: 2020-06-20
 */
public final class PlatformCode {
 
    /*成功*/
    public static final String SUCCESS = "100";
    /*错误提示*/
    public static final String ERROR_TIPS="200";
    /*签名错误*/
    public static final String ERROR_SIGN = "201";
    /*appId错误*/
    public static final String ERROR_APPIS= "202";
    /*参数不能为空*/
    public static final String ERROR_PARAMETER_NULL = "203";
    /*参数类型错误*/
    public static final String ERROR_PARAMETER_TYPE = "204";
 
    /*body格式错误*/
    public static final String ERROR_BODY_DATA = "500";
 
    /*系统异常*/
    public static final String ERROR_SYSTEM = "999";
 
 
}