14 lines
432 B
C#
14 lines
432 B
C#
using Yi.Framework.Infrastructure.Ddd.Services.Abstract;
|
|
using Yi.Furion.Core.Rbac.Dtos.Dept;
|
|
|
|
namespace Yi.Furion.Application.Rbac.Services
|
|
{
|
|
/// <summary>
|
|
/// Dept服务抽象
|
|
/// </summary>
|
|
public interface IDeptService : ICrudAppService<DeptGetOutputDto, DeptGetListOutputDto, long, DeptGetListInputVo, DeptCreateInputVo, DeptUpdateInputVo>
|
|
{
|
|
Task<List<long>> GetChildListAsync(long deptId);
|
|
}
|
|
}
|