1 2 3 4 5 6 7 8 9 10 11
using Yi.Framework.Rbac.Domain.Entities; using Yi.Framework.SqlSugarCore.Abstractions; namespace Yi.Framework.Rbac.Domain.Repositories { public interface IDeptRepository : ISqlSugarRepository<DeptAggregateRoot, Guid> { Task<List<Guid>> GetChildListAsync(Guid deptId); Task<List<DeptAggregateRoot>> GetListRoleIdAsync(Guid roleId); } }