月球大数据地理空间分析展示平台-【后端】-月球后台服务
1
13693261870
2024-11-17 796b44ea813a1133beae4f3a67f1c0263510c0c7
src/main/java/com/moon/server/service/all/PermsService.java
@@ -10,11 +10,8 @@
import java.util.List;
import java.util.concurrent.TimeUnit;
/**
 * 授权服务
 * @author WWW
 */
@Service
@SuppressWarnings("ALL")
public class PermsService implements PermsMapper {
    @Resource
    PermsMapper permsMapper;
@@ -130,30 +127,18 @@
        return permsMapper.selectMenuRecursive(id, uid);
    }
    /**
     * 清除资源缓存
     */
    public void clearResCache() {
        redisService.clearKeys(RedisCacheKey.permsResKey(""));
    }
    /**
     * 清除图层缓存
     */
    public void clearLayerCache() {
        redisService.clearKeys(RedisCacheKey.permsLayerKey(""));
    }
    /**
     * 清除授权缓存
     */
    public void clearPermsCache() {
        redisService.clearKeys(RedisCacheKey.permsRootKey());
    }
    /**
     * 清除所有缓存
     */
    public void clearAllCache() {
        redisService.clearAll();
    }