| using System; | 
| using System.Collections.Generic; | 
| using System.Linq; | 
| using System.Text; | 
| using System.Threading.Tasks; | 
| using WIDESEA_Core; | 
| using WIDESEA_Core.BaseRepository; | 
| using WIDESEA_DTO.System; | 
| using WIDESEA_Model.Models; | 
|   | 
| namespace WIDESEA_ISystemRepository | 
| { | 
|     public interface ISys_MenuRepository : IRepository<Sys_Menu> | 
|     { | 
|         List<MenuDTO> GetAllMenu(); | 
|   | 
|         List<MenuDTO> GetAllPDAMenu(); | 
|         /// <summary> | 
|         /// 获取所有PDA权限 | 
|         /// </summary> | 
|         /// <returns></returns> | 
|         List<MenuDTO> GetAllMenuPDA(); | 
|   | 
|         object GetSuperAdminMenu(); | 
|   | 
|         object GetMenuByRoleId(int roleId); | 
|   | 
|         List<Permissions> GetPermissions(int roleId); | 
|   | 
|         object GetMenu(List<int> menuIds); | 
|   | 
|         object GetTreeItem(int menuId); | 
|     } | 
| } |