19 lines
461 B
C#
19 lines
461 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YY.Admin.Services.Service.Role
|
|
{
|
|
public interface ISysRoleMenuService
|
|
{
|
|
/// <summary>
|
|
/// 根据角色Id集合获取菜单Id集合
|
|
/// </summary>
|
|
/// <param name="roleIdList"></param>
|
|
/// <returns></returns>
|
|
Task<List<long>> GetRoleMenuIdList(List<long> roleIdList);
|
|
}
|
|
}
|