From 0164b661a8d59c5758cbca17e11504e6359b188c Mon Sep 17 00:00:00 2001 From: xiaochanghai Date: Tue, 1 Apr 2025 13:09:53 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9F=B9=E8=AE=AD=E9=9C=80=E6=B1=82-=E5=AF=BC?= =?UTF-8?q?=E5=87=BA=E5=8A=9F=E8=83=BD=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Tiobon.Core.Api/Controllers/Ghre/Ghre_RequestController.cs | 2 +- Tiobon.Core.IServices/Ghre/IGhre_RequestServices.cs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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