1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.ruoyi.common.core.constant;
|
| /**
| * 缓存的key 常量
| *
| * @author ruoyi
| */
| public class CacheConstants
| {
| /**
| * oauth 缓存前缀
| */
| public static final String OAUTH_ACCESS = "oauth:access:";
|
| /**
| * oauth 客户端信息
| */
| public static final String CLIENT_DETAILS_KEY = "oauth:client:details";
| }
|
|