jiangqs
2023-06-07 1fc05375474ca0393d6c29fd2ab1d182c65a3eaa
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";
}