From cb921a68fe5f01012125fb522086acea2aa255ba Mon Sep 17 00:00:00 2001
From: zhoushihao <zsh19950802@163.com>
Date: 星期五, 27 十二月 2024 14:43:40 +0800
Subject: [PATCH] 1、中空理片笼新增配方相关功能,用于用户自定义保存中空线相关参数,避免重复输入相同的参数 2、领取任务/强制出片改造:在流程卡、路线、数量基础上新增配方id,用于关联本地流程卡的中空的参数配方 3、增加限制:同一条线路的同个流程卡仅能存在一个未完成的任务 4、卧式理片笼新增日期格式
---
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