Files
Yi.Admin/Yi.Furion.Net6/Yi.Furion.Application/Rbac/Services/IDeptService.cs

14 lines
432 B
C#
Raw Normal View History

2023-04-13 21:12:06 +08:00
using Yi.Framework.Infrastructure.Ddd.Services.Abstract;
2023-04-15 22:44:33 +08:00
using Yi.Furion.Core.Rbac.Dtos.Dept;
2023-04-13 21:12:06 +08:00
2023-04-15 17:33:42 +08:00
namespace Yi.Furion.Application.Rbac.Services
2023-04-13 21:12:06 +08:00
{
/// <summary>
/// Dept服务抽象
/// </summary>
public interface IDeptService : ICrudAppService<DeptGetOutputDto, DeptGetListOutputDto, long, DeptGetListInputVo, DeptCreateInputVo, DeptUpdateInputVo>
{
Task<List<long>> GetChildListAsync(long deptId);
2023-04-13 21:12:06 +08:00
}
}