From b25ce186da97a1a774ddf89504f97d8c244fda66 Mon Sep 17 00:00:00 2001
From: chenluhua1980 <Chenluhua@qq.com>
Date: 星期四, 29 一月 2026 09:25:06 +0800
Subject: [PATCH] 1.移除 SubEqpStart/End(CEID 10015/10016) 2.UnitStart/UnitEnd 增加 PanelID(5006/5007) 3.Report/CEID 两个表都同步了对应 VIDs/备注

---
 SourceCode/Bond/Servo/CCollectionEvent.cpp |   10 ++++++++--
 1 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/SourceCode/Bond/Servo/CCollectionEvent.cpp b/SourceCode/Bond/Servo/CCollectionEvent.cpp
index a0b7773..13e23b2 100644
--- a/SourceCode/Bond/Servo/CCollectionEvent.cpp
+++ b/SourceCode/Bond/Servo/CCollectionEvent.cpp
@@ -59,9 +59,9 @@
 		}
 	}
 
-	unsigned int CCollectionEvent::getPortID()
+	unsigned int CCollectionEvent::getFirstReportID()
 	{
-		if (m_reports.empty()) return -1;
+		if (m_reports.empty()) return 0;
 		return m_reports.front()->getReportId();
 	}
 
@@ -90,6 +90,12 @@
 		return nullptr;
 	}
 
+	CReport* CCollectionEvent::getFirstReport()
+	{
+		if (m_reports.empty()) return nullptr;
+		return m_reports.front();
+	}
+
 	std::vector<CReport*>& CCollectionEvent::getReports()
 	{
 		return m_reports;

--
Gitblit v1.9.3