xiaoyong931011
2022-07-08 bd4ab82f2e0c485f36a254e3cbf72f21dabfd628
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
package com.xcong.farmer.cms.common.contants;
 
/**
 * @author wzy
 * @date 2020-05-12
 **/
public class AppContants {
 
    /**
     * app用户登陆redis前缀
     */
    public static final String APP_LOGIN_PREFIX = "app_";
 
    /**
     * token头部
     */
    public static final String TOKEN_HEADER = "Authorization";
 
    /**
     * web头部
     */
    public static final String WEBSITE_HEADER = "website";
 
    /**
     * token start with
     */
    public static final String TOKEN_START_WITH = "Bearer ";
 
    public static final String PICTURE_PATH = "D:\\Tools\\";
 
 
}