package com.ruoyi.common.core.constant; /** * redis key常量 * * @author HJL * @version 1.0 * @since 2024-05-17 10:26 */ public class RedisConstants { /** * 学习端 验证码登录key */ public final static String PHONE_CODE = "phone_code:"; public final static String PHONE_CODE_PARENT = "parent_phone_code:"; /** * 省市区三级树 */ public final static String ADDRESS_TREE = "regin_tree"; /** * 商品库存key前缀 */ public final static String GOOD_STOCK = "good_stock:%s"; /** * 游戏项目 */ public final static String HEARING_TREE = "game_subject"; /** * 过期时间 30 */ public final static Integer THIRTY = 30; }