From 0e2933f0e26f27fe7f342e94cd3cb816f717f34b Mon Sep 17 00:00:00 2001 From: gaoqr <13665037151@163.com> Date: Thu, 21 May 2026 09:14:34 +0800 Subject: [PATCH] =?UTF-8?q?getNotPlanOrderListPage=E3=80=81getNotPlanGoods?= =?UTF-8?q?ListPage=20http=20method=20get=E6=94=B9=E4=B8=BApost?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../executor/controller/admin/plan/PlanController.java | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/cf-module-prod-executor/cf-module-prod-executor-biz/src/main/java/com/cf/imes/module/executor/controller/admin/plan/PlanController.java b/cf-module-prod-executor/cf-module-prod-executor-biz/src/main/java/com/cf/imes/module/executor/controller/admin/plan/PlanController.java index 779ab769a..9bb1faa3c 100644 --- a/cf-module-prod-executor/cf-module-prod-executor-biz/src/main/java/com/cf/imes/module/executor/controller/admin/plan/PlanController.java +++ b/cf-module-prod-executor/cf-module-prod-executor-biz/src/main/java/com/cf/imes/module/executor/controller/admin/plan/PlanController.java @@ -119,20 +119,18 @@ public class PlanController { } - - @GetMapping("getNotPlanOrderListPage") + @PostMapping("getNotPlanOrderListPage") @Operation(summary = "获取未排单的订单分页列表") @PreAuthorize("@ss.hasPermission('unplannedOrders:query')") - public CommonResult> getOrderPage(@Valid OrderPageReqVOCopy pageReqVO) { + public CommonResult> getOrderPage(@Valid @RequestBody OrderPageReqVOCopy pageReqVO) { return success(planService.getOrderPage(pageReqVO)); } - - @GetMapping("getNotPlanGoodsListPage") + @PostMapping("getNotPlanGoodsListPage") @Operation(summary = "获取未排单的大板板材分页列表") @PreAuthorize("@ss.hasPermission('unplannedOrders:query')") - public CommonResult> getOrderGoodsPage(@Valid OrderPageReqVOCopy pageReqVO) { + public CommonResult> getOrderGoodsPage(@Valid @RequestBody OrderPageReqVOCopy pageReqVO) { return success(planService.getOrderGoodsPage(pageReqVO)); }