From 4ed47bfce9b3edd78ea447ecffc0babebdbea10b Mon Sep 17 00:00:00 2001
From: wangfei <3597712270@qq.com>
Date: 星期二, 31 十二月 2024 14:14:12 +0800
Subject: [PATCH] Merge branch 'master' of http://10.153.19.25:10105/r/YiWuProject

---
 hangzhoumesParent/moduleService/howllowGlassModule/src/main/java/com/mes/hollow/service/HollowGlassOutRelationInfoService.java |   20 ++++++++++++++++++--
 1 files changed, 18 insertions(+), 2 deletions(-)

diff --git a/hangzhoumesParent/moduleService/howllowGlassModule/src/main/java/com/mes/hollow/service/HollowGlassOutRelationInfoService.java b/hangzhoumesParent/moduleService/howllowGlassModule/src/main/java/com/mes/hollow/service/HollowGlassOutRelationInfoService.java
index 8858806..6cd97b3 100644
--- a/hangzhoumesParent/moduleService/howllowGlassModule/src/main/java/com/mes/hollow/service/HollowGlassOutRelationInfoService.java
+++ b/hangzhoumesParent/moduleService/howllowGlassModule/src/main/java/com/mes/hollow/service/HollowGlassOutRelationInfoService.java
@@ -2,6 +2,10 @@
 
 import com.baomidou.mybatisplus.extension.service.IService;
 import com.mes.hollow.entity.HollowGlassOutRelationInfo;
+import com.mes.hollow.entity.request.HollowTaskRequest;
+import com.mes.hollowqueue.entity.HollowGlassQueueInfo;
+
+import java.util.List;
 
 /**
  * (HollowGlassOutRelationInfo)琛ㄦ湇鍔℃帴鍙�
@@ -11,10 +15,22 @@
  */
 public interface HollowGlassOutRelationInfoService extends IService<HollowGlassOutRelationInfo> {
 
-    HollowGlassOutRelationInfo receiveTask(String flowCardId, int cell, int totalPairQuantity);
+    HollowGlassOutRelationInfo receiveTask(HollowTaskRequest request);
 
-    HollowGlassOutRelationInfo forceOutGlass(String flowCardId, int cell, int totalPairQuantity);
+    HollowGlassOutRelationInfo forceOutGlass(HollowTaskRequest request);
 
     Boolean dispatchHollowSwitch(Boolean flag);
+
+    List<String> hollowTaskList(int cell);
+
+    List<HollowGlassQueueInfo> appointHollowTaskDetails(String flowCardId, int cell);
+
+    Boolean startTask(String flowCardId, int cell);
+
+    Boolean pauseTask(String flowCardId, int cell);
+
+    Boolean finishTask(String flowCardId, int cell);
+
+    Boolean deleteHollowTaskDetails(String flowCardId, int cell);
 }
 

--
Gitblit v1.8.0