All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.wangshanhai.power.service.PermissionService Maven / Gradle / Ivy

The newest version!
package com.wangshanhai.power.service;

import com.wangshanhai.power.dto.RoutePermission;

import javax.servlet.http.HttpServletRequest;
import java.util.List;

/**
 * 权限服务
 * @author Shmily
 */
public interface PermissionService {
    /**
     * 查询当前用户全部权限
     *
     * @param request
     * @return
     */
    public List queryAllPermission(HttpServletRequest request);

    /**
     * 获取路由权限
     * @return
     */
    default List loadRoutePermissionConfig() {
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy