1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.ycl.utils.redis;
|
| /**
| * Redis key
| *
| * @author lyq
| * @since 2022-09-06
| */
| public final class RedisKey {
| /**
| * 管理后台
| */
| public static final String PLATFORM_TOKEN_KEY = "platform-token:";
|
| /**
| * 字典key
| */
| public static final String DICT = "dict:";
|
| /**
| * 遂昌行政区域
| */
| public static final String SCCG_REGION = "sccg-region";
| }
|
|