mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 08:10:51 +08:00
12 lines
367 B
C#
12 lines
367 B
C#
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);
|
|
}
|
|
}
|