From 79edcd87697f5cce97e461443fac1e4e655f6dae Mon Sep 17 00:00:00 2001
From: zs <zhousong@weben-smart.com>
Date: 周一, 19 5月 2025 16:53:16 +0800
Subject: [PATCH] Merge branch 'master' of http://222.71.245.114:9086/r/HIA24016N_PipeLineDemo

---
 PipeLineLems/server/src/CMS.Plugin.PipeLineLems/Controller/WorkPlanController.cs |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/PipeLineLems/server/src/CMS.Plugin.PipeLineLems/Controller/WorkPlanController.cs b/PipeLineLems/server/src/CMS.Plugin.PipeLineLems/Controller/WorkPlanController.cs
index 16f075a..ade69da 100644
--- a/PipeLineLems/server/src/CMS.Plugin.PipeLineLems/Controller/WorkPlanController.cs
+++ b/PipeLineLems/server/src/CMS.Plugin.PipeLineLems/Controller/WorkPlanController.cs
@@ -71,7 +71,7 @@
         /// <returns></returns> 
         [HttpPost]
         [Route("FindListByFilter")]
-        public virtual async Task<List<WorkPlanDto>> FindListByFilterAsync(GetWorkPlanInput input)
+        public virtual async Task<List<WorkPlanDto>> FindListByFilterAsync([FromBody]GetWorkPlanInput input)
         {
             return await _workPlanAppService.FindListByFilterAsync(input);
         }
@@ -82,7 +82,7 @@
         /// <returns></returns> 
         [HttpPost]
         [Route("FindSingleByFilter")]
-        public virtual async Task<WorkPlanDto> FindSingleByFilterAsync(GetWorkPlanInput input)
+        public virtual async Task<WorkPlanDto> FindSingleByFilterAsync([FromBody] GetWorkPlanInput input)
         {
 
             return await _workPlanAppService.FindSingleByFilterAsync(input);

--
Gitblit v1.9.3