From 9c6becf11cd8bd72a250e3c42b563ed910c394cb Mon Sep 17 00:00:00 2001 From: xiaochanghai Date: Mon, 21 Oct 2024 15:53:17 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Controllers/Ghrh/Ghrh_ResumeController.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Tiobon.Core.Api/Controllers/Ghrh/Ghrh_ResumeController.cs b/Tiobon.Core.Api/Controllers/Ghrh/Ghrh_ResumeController.cs index 97643056..ba24c8d1 100644 --- a/Tiobon.Core.Api/Controllers/Ghrh/Ghrh_ResumeController.cs +++ b/Tiobon.Core.Api/Controllers/Ghrh/Ghrh_ResumeController.cs @@ -23,4 +23,18 @@ public class Ghrh_ResumeController : BaseController> QueryViewTab() => _service.QueryViewTab(); #endregion + + #region 查询 + /// + /// 根据条件查询数据 + /// + /// 条件 + /// status + /// + [HttpPost, Route("QueryList/{status}")] + public async Task> QueryByStatus([FromBody] QueryBody body, string status) + { + return await _service.QueryFilterPage(body, $"Status ='{status}'"); + } + #endregion } \ No newline at end of file