1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.lf.server.entity.sys;
|
| /**
| * Redis缓存键
| * @author WWW
| */
| public class RedisCacheKey {
| /**
| * 登录时令牌作为key
| *
| * @param key
| * @return
| */
| public static String ssoKey(String key) {
| return "sign:token:" + key;
| }
| }
|
|