1
hutongqing
2025-01-13 8baeba33d75be5ae6bffbffa3ae3427b3d7891d4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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);
    }
}