From 75f2936851cbccd4ed630317bbc99476d9dcf29d Mon Sep 17 00:00:00 2001
From: 廖井涛 <2265517004@qq.com>
Date: 星期三, 17 九月 2025 15:43:45 +0800
Subject: [PATCH] 修改成品料架功能

---
 north-glass-erp/src/main/java/com/example/erp/controller/mm/FinishedGlassShelfController.java |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/north-glass-erp/src/main/java/com/example/erp/controller/mm/FinishedGlassShelfController.java b/north-glass-erp/src/main/java/com/example/erp/controller/mm/FinishedGlassShelfController.java
index dec4be6..d648a6b 100644
--- a/north-glass-erp/src/main/java/com/example/erp/controller/mm/FinishedGlassShelfController.java
+++ b/north-glass-erp/src/main/java/com/example/erp/controller/mm/FinishedGlassShelfController.java
@@ -35,9 +35,9 @@
     }
 
     @ApiOperation("鐜荤拑鏂欐灦搴撳瓨鏌ヨ鎺ュ彛")
-    @PostMapping("/getSelectFinishedGlassShelfInformation/{pageNum}/{pageSize}")
-    public Result getSelectFinishedGlassShelfInformation(@PathVariable Integer pageNum, @PathVariable Integer pageSize){
-        return Result.seccess(finishedGlassShelfService.getSelectFinishedGlassShelfInformation(pageNum,pageSize));
+    @PostMapping("/getSelectFinishedGlassShelfInformation/{pageNum}/{pageSize}/{type}")
+    public Result getSelectFinishedGlassShelfInformation(@PathVariable Integer pageNum, @PathVariable Integer pageSize,@PathVariable String type){
+        return Result.seccess(finishedGlassShelfService.getSelectFinishedGlassShelfInformation(pageNum,pageSize,type));
     }
 
     @ApiOperation("鐜荤拑鏂欐灦搴撳瓨鏌ヨ鎺ュ彛")
@@ -54,8 +54,8 @@
 
     @ApiOperation("鐜荤拑鏂欐灦鏂板鍑哄簱鏄庣粏鏌ヨ鎺ュ彛")
     @PostMapping("/getSelectFinishedGlassShelfInformationDetails/{pageNum}/{pageSize}")
-    public Result getSelectFinishedGlassShelfInformationDetails(@PathVariable Integer pageNum, @PathVariable Integer pageSize, @RequestBody String ids){
-        return Result.seccess(finishedGlassShelfService.getSelectFinishedGlassShelfInformationDetails(pageNum,pageSize,ids));
+    public Result getSelectFinishedGlassShelfInformationDetails(@PathVariable Integer pageNum, @PathVariable Integer pageSize, @RequestBody List<Map<String, Object>> object){
+        return Result.seccess(finishedGlassShelfService.getSelectFinishedGlassShelfInformationDetails(pageNum,pageSize,object));
     }
 
     @ApiOperation("鐜荤拑鏂欐灦缂栬緫鍑哄簱鏄庣粏鏌ヨ鎺ュ彛")

--
Gitblit v1.8.0