diff --git a/Tiobon.Core.Api/Controllers/Ghre/Ghre_RequestController.cs b/Tiobon.Core.Api/Controllers/Ghre/Ghre_RequestController.cs index f12f53d1..e1984b5d 100644 --- a/Tiobon.Core.Api/Controllers/Ghre/Ghre_RequestController.cs +++ b/Tiobon.Core.Api/Controllers/Ghre/Ghre_RequestController.cs @@ -61,7 +61,7 @@ public class Ghre_RequestController : BaseController> ExportExcel([FromBody] QueryExport filter, string type) { - return await _service.ExportGroupExcel(filter, type); + return await _service.ExportExcel(filter, type); } #endregion diff --git a/Tiobon.Core.IServices/Ghre/IGhre_RequestServices.cs b/Tiobon.Core.IServices/Ghre/IGhre_RequestServices.cs index 73f316cb..5a767fcc 100644 --- a/Tiobon.Core.IServices/Ghre/IGhre_RequestServices.cs +++ b/Tiobon.Core.IServices/Ghre/IGhre_RequestServices.cs @@ -17,4 +17,5 @@ public interface IGhre_RequestServices : IBaseServices> ExportGroupExcel(QueryExport body, string type); + Task> ExportExcel(QueryExport body, string status); } \ No newline at end of file