luxiaotao1123
2024-06-21 569d2b6bc754b037ade5b4205a4d1cdb8339b26b
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package com.zy.ptc.kernel.common.constant;
 
/**
 * 系统常量
 * Created by vincent on 2019-10-29 15:55
 */
public class Constants {
    /**
     * 默认成功码
     */
    public static final int RESULT_OK_CODE = 0;
 
    /**
     * 默认失败码
     */
    public static final int RESULT_ERROR_CODE = 1;
 
    /**
     * 默认成功信息
     */
    public static final String RESULT_OK_MSG = "操作成功";
 
    /**
     * 默认失败信息
     */
    public static final String RESULT_ERROR_MSG = "操作失败";
 
    /**
     * 无权限错误码
     */
    public static final int UNAUTHORIZED_CODE = 403;
 
    /**
     * 无权限提示信息
     */
    public static final String UNAUTHORIZED_MSG = "没有访问权限";
 
    /**
     * 未认证错误码
     */
    public static final int UNAUTHENTICATED_CODE = 401;
 
    /**
     * 未认证提示信息
     */
    public static final String UNAUTHENTICATED_MSG = "请先登录";
 
    /**
     * 登录过期错误码
     */
    public static final int TOKEN_EXPIRED_CODE = 401;
 
    /**
     * 登录过期提示信息
     */
    public static final String TOKEN_EXPIRED_MSG = "登录已过期";
 
    /**
     * 非法token错误码
     */
    public static final int BAD_CREDENTIALS_CODE = 401;
 
    /**
     * 非法token提示信息
     */
    public static final String BAD_CREDENTIALS_MSG = "请退出重新登录";
 
    /**
     * 表示升序的值
     */
    public static final String ORDER_ASC_VALUE = "asc";
 
    /**
     * 表示降序的值
     */
    public static final String ORDER_DESC_VALUE = "desc";
 
    /**
     * token通过header传递的名称
     */
    public static final String TOKEN_HEADER_NAME = "Authorization";
 
    /**
     * token通过参数传递的名称
     */
    public static final String TOKEN_PARAM_NAME = "access_token";
 
    /**
     * token认证类型
     */
    public static final String TOKEN_TYPE = "Bearer";
 
}