From df2f559b1a2868eb5765c1fbee0c07f0f611e8f7 Mon Sep 17 00:00:00 2001
From: ZengTao <2773468879@qq.com>
Date: 星期一, 21 四月 2025 10:37:16 +0800
Subject: [PATCH] 添加折铝框查询与确认接口

---
 hangzhoumesParent/moduleService/hollowGlassModule/src/main/java/com/mes/hollowqueue/controller/HollowGlassQueueInfoController.java |   14 ++++++++++++++
 1 files changed, 14 insertions(+), 0 deletions(-)

diff --git a/hangzhoumesParent/moduleService/hollowGlassModule/src/main/java/com/mes/hollowqueue/controller/HollowGlassQueueInfoController.java b/hangzhoumesParent/moduleService/hollowGlassModule/src/main/java/com/mes/hollowqueue/controller/HollowGlassQueueInfoController.java
index eb24e9e..36a2f78 100644
--- a/hangzhoumesParent/moduleService/hollowGlassModule/src/main/java/com/mes/hollowqueue/controller/HollowGlassQueueInfoController.java
+++ b/hangzhoumesParent/moduleService/hollowGlassModule/src/main/java/com/mes/hollowqueue/controller/HollowGlassQueueInfoController.java
@@ -5,6 +5,7 @@
 import com.mes.utils.Result;
 import io.swagger.annotations.ApiOperation;
 import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.RequestBody;
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RestController;
 
@@ -29,5 +30,18 @@
     public Result<List<HollowGlassQueueInfo>> queryHollowGlassQueueInfoByTask(int taskId) {
         return Result.success(hollowGlassQueueInfoService.queryHollowGlassQueueInfoByTask(taskId));
     }
+
+    @ApiOperation("閾濇纭/鐮存崯")
+    @PostMapping("/confirmBorder")
+    public Result confirmBorder(@RequestBody HollowGlassQueueInfo hollowGlassQueueInfo) {
+        hollowGlassQueueInfoService.confirmBorder(hollowGlassQueueInfo);
+        return Result.build(200, "淇敼鎴愬姛", 1);
+    }
+
+    @ApiOperation("閾濇鏌ヨ")
+    @PostMapping("/queryHollowGlassQueueInfoByLine")
+    public Result queryHollowGlassQueueInfoByLine(@RequestBody HollowGlassQueueInfo hollowGlassQueueInfo) {
+        return Result.build(200, "鎿嶄綔鎴愬姛", hollowGlassQueueInfoService.queryHollowGlassQueueInfoByLine(hollowGlassQueueInfo.getCell()));
+    }
 }
 

--
Gitblit v1.8.0