jiangqs
2023-07-12 f26537e926d7ad2d725e059700142ba14c0c2b1f
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
package com.ruoyi.system.api.constant;
 
/**
 * @author jqs34
 * @ClassName SecurityConstant
 * @description: TODO
 * @date 2023年02月21日
 * @version: 1.0
 */
public interface SecurityConstant {
 
 
    /**
     * 微信sessionKey前缀
     */
    String SESSION_KEY = "SESSION_KEY:";
 
 
    /**
     * 用户验证码前缀key
     */
    String MESSAGE_CODE = "MESSAGE_CODE:";
 
    /**
     * 用户验证码前缀key
     */
    String MINI_CODE = "MINI_CODE:";
 
    /**
     * 用户验证码前缀key
     */
    String WX_TOKEN = "WX_TOKEN";
 
    /**
     * 省市区列表key
     */
    String REGION_LIST = "REGION_LIST";
 
    /**
     * 省市区列表key
     */
    String CITY_LIST = "CITY_LIST";
 
    /**
     * 秒杀活动商品key前缀
     */
    String ACTIVITY_GOODS = "ACTIVITY_GOODS";
 
}