From 2e4fc5726a1ae46d7c83f7397ad326075a4b194c Mon Sep 17 00:00:00 2001 From: 廖井涛 <2265517004@qq.com> Date: 星期四, 13 六月 2024 14:47:32 +0800 Subject: [PATCH] Merge branch 'master' of http://bore.pub:10439/r/ERP_override --- north-glass-erp/src/main/java/com/example/erp/controller/pp/ProductionSchedulingController.java | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/north-glass-erp/src/main/java/com/example/erp/controller/pp/ProductionSchedulingController.java b/north-glass-erp/src/main/java/com/example/erp/controller/pp/ProductionSchedulingController.java index 6b54924..46ab80d 100644 --- a/north-glass-erp/src/main/java/com/example/erp/controller/pp/ProductionSchedulingController.java +++ b/north-glass-erp/src/main/java/com/example/erp/controller/pp/ProductionSchedulingController.java @@ -37,15 +37,18 @@ //鐐瑰嚮鏌ヨ鎺掔増鏁版嵁 @ApiOperation("鐐瑰嚮鏌ヨ鎺掔増鏁版嵁鎺ュ彛") @SaCheckPermission("ProductionScheduling.search") - @PostMapping ("/selectScheduling/{selectTime1}/{selectTime2}/{orderId}/{processes}/{state}") + @PostMapping ("/selectScheduling/{pageNum}/{pageSize}/{selectTime1}/{selectTime2}/{orderId}/{processes}/{state}") public Result selectScheduling( + @PathVariable Integer pageNum, + @PathVariable Integer pageSize, @PathVariable String selectTime1, @PathVariable String selectTime2, @PathVariable String orderId, @PathVariable String processes, @PathVariable Integer state, @RequestBody ProductionScheduling productionScheduling){ - return Result.seccess(productionSchedulingService.selectSchedulingSv(selectTime1,selectTime2,orderId,processes,state,productionScheduling)); + + return Result.seccess(productionSchedulingService.selectSchedulingSv(pageNum, pageSize,selectTime1,selectTime2,orderId,processes,state,productionScheduling)); } -- Gitblit v1.8.0