From 0026ea3b1a6588f3e40b8276162f54b2a22bc7ae Mon Sep 17 00:00:00 2001
From: chenluhua1980 <Chenluhua@qq.com>
Date: 星期一, 19 一月 2026 14:32:27 +0800
Subject: [PATCH] 1.修复 : 多 PJ 支持仍是单槽实现:isProcessJobsEmpty/validate 仍只允许 1 个 PJ/CJ;Host 一次下多 PJ 或运行中追加 PJ 会被拒绝/无明确反馈。需要:协议上明示只支持 1,或补齐 ACK/NAK 与队列管理、PJobSpace 动态更新。

---
 SourceCode/Bond/Servo/SECSRuntimeManager.h |   62 +++++++++++++++++++++++++++++++
 1 files changed, 62 insertions(+), 0 deletions(-)

diff --git a/SourceCode/Bond/Servo/SECSRuntimeManager.h b/SourceCode/Bond/Servo/SECSRuntimeManager.h
index b66c70f..a3bc39d 100644
--- a/SourceCode/Bond/Servo/SECSRuntimeManager.h
+++ b/SourceCode/Bond/Servo/SECSRuntimeManager.h
@@ -316,20 +316,68 @@
     */ 
     void initSystemECTable();
 
+    int addSystemEC(int nID, const std::string& sName, const std::string& sDataType, int nMinValue, int nMaxValue, int nDefaultVal, const std::string& sUnit, const std::string& sRemark, int nSystemID);
+
+    std::vector<std::vector<std::string>> getSystemECByID(int nID);
+
+    std::vector<std::vector<std::string>> getAllSystemEC();
+
+    int updateSystemEC(int nID, int nNewID, const std::string& sName, const std::string& sDataType, int nMinValue, int nMaxValue, int nDefaultVal, const std::string& sUnit, const std::string& sRemark, int nSystemID);
+
+    int deleteSystemECByID(int nID);
+
+    int deleteAllSystemEC();
+
     /**
     * 鍒濆鍖� EqpEC 琛�
     */
     void initEqpECTable();
+
+    int addEqpEC(int nID, const std::string& sName, const std::string& sDataType, int nMinValue, int nMaxValue, int nDefaultValue, const std::string& sUnit, const std::string& sRemark, int nSeqNo, int nLength, int bCanUpdateByHost);
+
+    std::vector<std::vector<std::string>> getEqpECByID(int nID);
+
+    std::vector<std::vector<std::string>> getAllEqpEC();
+
+    int updateEqpEC(int nID, int nNewID, const std::string& sName, const std::string& sDataType, int nMinValue, int nMaxValue, int nDefaultValue, const std::string& sUnit, const std::string& sRemark, int nSeqNo, int nLength, int bCanUpdateByHost);
+
+    int deleteEqpECByID(int nID);
+
+    int deleteAllEqpEC();
 
     /**
     * 鍒濆鍖� SystemEvent 琛�
     */
     void initSystemEventTable();
 
+    int addSystemEvent(int nCEID, const std::string& sName, const std::string& sRemark, int nSystemID);
+
+    std::vector<std::vector<std::string>> getSystemEventByID(int nCEID);
+
+    std::vector<std::vector<std::string>> getAllSystemEvents();
+
+    int updateSystemEvent(int nCEID, int nNewCEID, const std::string& sName, const std::string& sRemark, int nSystemID);
+
+    int deleteSystemEventByID(int nCEID);
+
+    int deleteAllSystemEvents();
+
     /**
     * 鍒濆鍖� EqpEvent 琛�
     */
     void initEqpEventTable();
+
+    int addEqpEvent(const std::string& sName, const std::string& sRemark, int nBitNo);
+
+    std::vector<std::vector<std::string>> getEqpEventByID(int nCEID);
+
+    std::vector<std::vector<std::string>> getAllEqpEvents();
+
+    int updateEqpEvent(int nCEID, const std::string& sName, const std::string& sRemark, int nBitNo);
+
+    int deleteEqpEventByID(int nCEID);
+
+    int deleteAllEqpEvents();
 
     /**
     * 鍒濆鍖� EventLink 琛�
@@ -341,6 +389,20 @@
 	 */
     void initPPIDTable();
 
+	std::vector<std::string> getAllPPID();
+
+    void setAllPPID(const std::vector<std::string>& vecPPIDList);
+
+    bool updatePPIDForRecipe(int nRecipeNo, const std::string& strPPID);
+
+    std::string getPPIDForRecipe(int nRecipeNo);
+
+    int getRecipeForPPID(std::string strPPID);
+
+    bool deletePPIDForRecipe(int nRecipeNo);
+
+    bool deletePPIDForAllRecipes();
+
 	/**
 	* 鍒濆鍖� RPTID 琛�
     */ 

--
Gitblit v1.9.3