培训需求-导出功能处理

master
xiaochanghai 3 months ago
parent 8c13b702a3
commit 0164b661a8
  1. 2
      Tiobon.Core.Api/Controllers/Ghre/Ghre_RequestController.cs
  2. 1
      Tiobon.Core.IServices/Ghre/IGhre_RequestServices.cs

@ -61,7 +61,7 @@ public class Ghre_RequestController : BaseController<IGhre_RequestServices, Ghre
[HttpPost("ExportExcel/{type}")]
public async Task<ServiceResult<ExcelData>> ExportExcel([FromBody] QueryExport filter, string type)
{
return await _service.ExportGroupExcel(filter, type);
return await _service.ExportExcel(filter, type);
}
#endregion

@ -17,4 +17,5 @@ public interface IGhre_RequestServices : IBaseServices<Ghre_Request, Ghre_Reques
Task Ushio_Sync();
Task<ServiceResult<ExcelData>> ExportGroupExcel(QueryExport body, string type);
Task<ServiceResult<ExcelData>> ExportExcel(QueryExport body, string status);
}
Loading…
Cancel
Save