using System.Collections.Generic; using System.Threading.Tasks; using Yi.Framework.Interface.Base; using Yi.Framework.Model.RABC.Entitys; using Yi.Framework.Repository; namespace Yi.Framework.Interface.RABC { public partial interface IDeptService:IBaseService { /// /// 动态条件查询 /// /// /// Task> SelctGetList(DeptEntity dept); /// /// 根据角色id获取该角色的部门权限 /// /// /// Task> GetListByRoleId(long roleId); } }