mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-06 17:50:51 +08:00
12 lines
353 B
C#
12 lines
353 B
C#
|
|
using Yi.Framework.Rbac.Domain.Entities;
|
|||
|
|
using Yi.Framework.SqlSugarCore.Abstractions;
|
|||
|
|
|
|||
|
|
namespace Yi.Framework.Rbac.Domain.Repositories
|
|||
|
|
{
|
|||
|
|
public interface IDeptRepository : ISqlSugarRepository<DeptEntity, Guid>
|
|||
|
|
{
|
|||
|
|
Task<List<Guid>> GetChildListAsync(Guid deptId);
|
|||
|
|
Task<List<DeptEntity>> GetListRoleIdAsync(Guid roleId);
|
|||
|
|
}
|
|||
|
|
}
|