Files
peipei-backend/play-common/src/main/java/com/starry/common/constant/CacheConstants.java
2024-03-20 09:28:04 +08:00

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:";
}