jiangqs
2023-05-03 00f3a60a31dd5f6bcc4a02f03beb15d91cd4b6f8
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
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";
}