using System.Collections.Generic; using System.Threading.Tasks; using Yi.Framework.Common.Models; using Yi.Framework.Model.Models; using Yi.Framework.Repository; namespace Yi.Framework.Interface { public partial interface IRoleService { /// /// DbTest /// /// Task> DbTest(); /// /// 通过角色id获取角色实体包含菜单 /// /// /// Task GetInMenuByRoleId(long roleId); /// /// 给角色设置菜单,多角色,多菜单 /// /// /// /// Task GiveRoleSetMenu(List roleIds, List menuIds); Task>> SelctPageList(RoleEntity role, PageParModel page); } }