bug
jiangqs
2023-07-23 3f1e7569d9956837d2fa305dd78a7f9583dfa3e5
1
2
3
4
5
6
7
8
9
10
11
package com.ruoyi.order.tools.auth;
 
import java.util.List;
import java.util.Map;
 
public interface CacheService {
    <T> void cache(String cacheKey, T cacheData);
    <T> T get(String cacheKey, Class<T> cacheType);
    <Key, Val> Map<Key, Val> getMap(String cacheKey);
    <T> List<T> getList(String cacheKey);
}