/*
|
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
|
*
|
* Redistribution and use in source and binary forms, with or without
|
* modification, are permitted provided that the following conditions are met:
|
*
|
* Redistributions of source code must retain the above copyright notice,
|
* this list of conditions and the following disclaimer.
|
* Redistributions in binary form must reproduce the above copyright
|
* notice, this list of conditions and the following disclaimer in the
|
* documentation and/or other materials provided with the distribution.
|
* Neither the name of the dreamlu.net developer nor the names of its
|
* contributors may be used to endorse or promote products derived from
|
* this software without specific prior written permission.
|
* Author: Chill 庄骞 (smallchill@163.com)
|
*/
|
package org.sxkj.system.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import org.apache.ibatis.annotations.Param;
|
import org.springblade.core.tool.node.TreeNode;
|
import org.sxkj.system.dto.MenuDTO;
|
import org.sxkj.system.entity.Menu;
|
import org.sxkj.system.vo.MenuVO;
|
|
import java.util.List;
|
import java.util.Map;
|
|
|
/**
|
* MenuMapper 接口
|
*
|
* @author Chill
|
*/
|
public interface MenuMapper extends BaseMapper<Menu> {
|
|
/**
|
* 懒加载列表
|
*
|
* @param parentId
|
* @param param
|
* @return
|
*/
|
List<MenuVO> lazyList(Long parentId, Map<String, Object> param);
|
|
/**
|
* 懒加载菜单列表
|
*
|
* @param parentId
|
* @param param
|
* @return
|
*/
|
List<MenuVO> lazyMenuList(Long parentId, Map<String, Object> param);
|
|
/**
|
* 树形结构
|
*
|
* @return
|
*/
|
List<TreeNode> tree();
|
|
/**
|
* 授权树形结构
|
*
|
* @return
|
*/
|
List<TreeNode> grantTree(@Param("sysType") Integer sysType);
|
|
|
/**
|
* 授权树形结构
|
*
|
* @param roleId
|
* @return
|
*/
|
List<TreeNode> grantTreeByRole(@Param("list") List<Long> roleIdList,
|
@Param("sysType") Integer sysType);
|
|
/**
|
* 顶部菜单树形结构
|
*
|
* @return
|
*/
|
List<TreeNode> grantTopTree();
|
|
/**
|
* 顶部菜单树形结构
|
*
|
* @param roleId
|
* @return
|
*/
|
List<TreeNode> grantTopTreeByRole(List<Long> roleId);
|
|
/**
|
* 数据权限授权树形结构
|
*
|
* @return
|
*/
|
List<TreeNode> grantDataScopeTree();
|
|
/**
|
* 接口权限授权树形结构
|
*
|
* @return
|
*/
|
List<TreeNode> grantApiScopeTree();
|
|
/**
|
* 数据权限授权树形结构
|
*
|
* @param roleId
|
* @return
|
*/
|
List<TreeNode> grantDataScopeTreeByRole(List<Long> roleId);
|
|
/**
|
* 接口权限授权树形结构
|
*
|
* @param roleId
|
* @return
|
*/
|
List<TreeNode> grantApiScopeTreeByRole(List<Long> roleId);
|
|
/**
|
* 所有菜单
|
*
|
* @return
|
*/
|
List<Menu> allMenu();
|
|
/**
|
* 权限配置菜单
|
*
|
* @param roleId
|
* @param topMenuId
|
* @return
|
*/
|
List<Menu> roleMenu(List<Long> roleId, Long topMenuId);
|
|
/**
|
* 权限配置菜单
|
*
|
* @param roleId
|
* @param sysType
|
* @return
|
*/
|
List<Menu> roleMenuByRoleId(@Param("list") List<Long> roleId,@Param("sysType") Integer sysType);
|
|
/**
|
* 权限配置菜单
|
*
|
* @param topMenuId
|
* @return
|
*/
|
List<Menu> roleMenuByTopMenuId(Long topMenuId);
|
|
/**
|
* 菜单树形结构
|
*
|
* @param roleId
|
* @return
|
*/
|
List<Menu> routes(List<Long> roleId);
|
|
/**
|
* 按钮树形结构
|
*
|
* @return
|
*/
|
List<Menu> allButtons(@Param("sysType") Integer sysType);
|
|
/**
|
* 按钮树形结构
|
*
|
* @param roleId
|
* @return
|
*/
|
List<Menu> buttons(@Param("list") List<Long> roleId,@Param("sysType") Integer sysType);
|
/**
|
* 根据类型查询菜单
|
* @param roleIdList 角色ID列表(管理员传null)
|
* @param sysType 系统类型
|
* @param categoryList 菜单类型列表
|
* @return 菜单列表
|
*/
|
List<Menu> queryMenusByType(@Param("roleIdList") List<Long> roleIdList,
|
@Param("sysType") Integer sysType,
|
@Param("categoryList") List<Long> categoryList);
|
/**
|
* 获取配置的角色权限
|
*
|
* @param roleIds
|
* @return
|
*/
|
List<MenuDTO> authRoutes(List<Long> roleIds);
|
|
/**
|
* 按条件查询所有菜单列表
|
* @param sysType
|
* @return
|
*/
|
List<Menu> getAllMenuByParam(@Param("sysType") Integer sysType,@Param("category") Integer category);
|
|
/**
|
* 前端设备权限按钮数据
|
*/
|
List<TreeNode> deviceButtons();
|
|
/**
|
* 查询当前角色对应的菜单
|
* @param roleId
|
* @return
|
*/
|
List<Menu> getRoleButton(@Param("list") List<Long> roleId);
|
|
/**
|
* 机场授权功能按钮查询
|
* @param deviceSn
|
* @param deptId
|
* @return
|
*/
|
List<Menu> getAirportPerButton(@Param("deviceSn") String deviceSn,@Param("deptId") String deptId);
|
/**
|
* 按类型查询所有菜单(支持多菜单类型)
|
* @param sysType 系统类型:1-后台 2-大屏 3-APP
|
* @param categoryList 菜单类型列表:1-菜单 2-按钮 3-Tab导航 4-功能导航
|
* @return 菜单列表
|
*/
|
List<Menu> selectAllMenusByCategories(@Param("sysType") Integer sysType,
|
@Param("categoryList") List<Long> categoryList);
|
|
/**
|
* 根据角色ID和类型查询菜单(支持多菜单类型)
|
* @param roleIdList 角色ID列表
|
* @param sysType 系统类型
|
* @param categoryList 菜单类型列表
|
* @return 菜单列表
|
*/
|
List<Menu> selectRoleMenusByCategories(@Param("roleIdList") List<Long> roleIdList,
|
@Param("sysType") Integer sysType,
|
@Param("categoryList") List<Long> categoryList);
|
|
/**
|
* 查询菜单(管理员用,支持多类型)
|
* @param sysType 系统类型
|
* @param categoryList 菜单类型列表
|
* @return 菜单列表
|
*/
|
List<Menu> selectMenusByType(@Param("sysType") Integer sysType,
|
@Param("categoryList") List<Long> categoryList);
|
|
/**
|
* 查询菜单(普通用户,支持多类型和权限控制)
|
* @param roleIdList 角色ID列表
|
* @param sysType 系统类型
|
* @param categoryList 菜单类型列表
|
* @return 菜单列表
|
*/
|
List<Menu> selectMenusWithPermission(@Param("roleIdList") List<Long> roleIdList,
|
@Param("sysType") Integer sysType,
|
@Param("categoryList") List<Long> categoryList);
|
|
|
}
|