24 lines
452 B
Java
24 lines
452 B
Java
package com.starry.common.constant;
|
|
|
|
/**
|
|
* @author 缓存常量
|
|
* @since 2022/8/26
|
|
*/
|
|
public class CacheConstants {
|
|
|
|
/**
|
|
* 字典管理 cache key
|
|
*/
|
|
public static final String SYS_DICT_KEY = "sys_dict:";
|
|
|
|
/**
|
|
* 登录用户 redis key
|
|
*/
|
|
public static final String LOGIN_TOKEN_KEY = "login_tokens:";
|
|
|
|
/**
|
|
* 验证码 redis key
|
|
*/
|
|
public static final String CAPTCHA_CODE_KEY = "captcha_codes:";
|
|
}
|