1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.dobbinsoft.fw.support.constant;
|
| /**
| * Description:
| * User: rize
| * Date: 2020/8/1
| * Time: 12:11
| */
| public class CacheConst {
|
|
| /**=========================== 动态配置 START =============================**/
|
| /**
| * 动态配置缓存
| * DYNAMIC_CACHE: + KEY
| */
| public static final String DYNAMIC_CACHE = "DYNAMIC_CACHE:";
|
| /**=========================== 动态配置 END ===============================**/
|
| }
|
|