管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-09-29 594fe3c5634a389bf74fef66c51eba5accd7e033
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;
    }
}