From 436f0ab66f5eded4367e61edb46edcab57b5787b Mon Sep 17 00:00:00 2001
From: LAPTOP-SNT8I5JK\Boounion <Chenluhua@qq.com>
Date: 星期四, 05 六月 2025 14:07:53 +0800
Subject: [PATCH] 1.Path增加Unit,因为BakeCooling比较特殊,它分为烧烤笔冷却,相当于两单元

---
 SourceCode/Bond/Servo/CPath.h |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/SourceCode/Bond/Servo/CPath.h b/SourceCode/Bond/Servo/CPath.h
index af53f62..577d07a 100644
--- a/SourceCode/Bond/Servo/CPath.h
+++ b/SourceCode/Bond/Servo/CPath.h
@@ -6,7 +6,7 @@
 	{
 	public:
 		CPath();
-		CPath(unsigned int nSiteId);
+		CPath(unsigned int nEqId, unsigned int nUnit);
 		virtual ~CPath();
 
 	public:
@@ -17,7 +17,8 @@
 		void addPath(CPath* pPath);
 		CPath* getTailPath();
 		CPath* getHeadPath();
-		unsigned int getSiteID();
+		unsigned int getEqID();
+		unsigned int getUnit();
 		ULONGLONG getInTime();
 		void setOutTime(ULONGLONG time);
 		ULONGLONG getOutTime();
@@ -25,7 +26,8 @@
 		BOOL isProcessEnd();
 
 	private:	
-		unsigned int m_nSiteID;
+		unsigned int m_nEqID;
+		unsigned int m_nUnit;
 		ULONGLONG m_timeIn;
 		ULONGLONG m_timeOut;
 		BOOL m_bProcessed;

--
Gitblit v1.9.3