hjl
2024-06-18 aaa3384609da2dfb7d6788a2a2b3d92a2bff0813
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
package com.ruoyi.common.core.constant;
 
/**
 * @author HJL
 * @version 1.0
 * @since 2024-05-31 14:47
 */
public class RedisConstants {
 
    /**
     * 入驻申请
     */
    public static final String WORKER_SETTLE_KEY = "worker_settle:";
 
    /**
     * 找回密码/验证手机号/验证码登录
     */
    public static final String WORKER_APPLY_KEY = "worker_apply:";
 
    /**
     * 用户端,登录验证码前缀
     */
    public static final String USER_LOGIN_PHONE_CODE = "user_phone_login:";
 
    /**
     * 菜单树
     */
    public final static String MENU_TREE = "menu_tree";
 
    /**
     * 省市区三级树
     */
    public final static String ADDRESS_TREE = "regin_tree";
 
 
}