chenjiahe
2021-10-21 ad508635f22704722d517c60c434ea7bf947aeda
提交 | 用户 | 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";
6c1bfc 24
C 25     /*body格式错误*/
26     public static final String ERROR_BODY_DATA = "500";
27
28     /*系统异常*/
29     public static final String ERROR_SYSTEM = "999";
30
31
32 }
33