feat: 前后端联调代码生成接口

This commit is contained in:
橙子
2024-02-16 17:16:54 +08:00
parent 12ec7a0392
commit 6675376241
20 changed files with 62 additions and 50 deletions

View File

@@ -1,4 +1,5 @@
using Volo.Abp.Domain.Repositories;
using Volo.Abp.Application.Dtos;
using Volo.Abp.Domain.Repositories;
using Yi.Framework.CodeGun.Application.Contracts.Dtos.Table;
using Yi.Framework.CodeGun.Application.Contracts.IServices;
using Yi.Framework.CodeGun.Domain.Entities;
@@ -11,5 +12,10 @@ namespace Yi.Framework.CodeGun.Application.Services
public TableService(IRepository<TableAggregateRoot, Guid> repository) : base(repository)
{
}
public override Task<PagedResultDto<TableDto>> GetListAsync(TableGetListInput input)
{
return base.GetListAsync(input);
}
}
}