123456789101112131415161718192021 |
- package com.bizmatics.service.constants;
- /**
- * 缓存的key 常量
- */
- public class CacheConst {
- /**
- * oauth 客户端信息
- */
- public static final String CLIENT_DETAILS_KEY = "oauth:client:details";
- /**
- * system config cache key
- */
- public static final String SYS_CONFIG_KEY = "sys_config:";
- /**
- * 字典管理 cache key
- */
- public static final String SYS_DICT_KEY = "sys_dict:";
- }
|