From 697fa6b857fe202fe2e5f50d4ecf2c7268e527cc Mon Sep 17 00:00:00 2001
From: LAPTOP-SNT8I5JK\Boounion <Chenluhua@qq.com>
Date: 星期五, 15 八月 2025 15:22:19 +0800
Subject: [PATCH] 1.变量(代EAP查询的数据)增加列表类型; 2.实现ProcessJob Queued上报功能;

---
 SourceCode/Bond/Servo/CVariable.h |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/SourceCode/Bond/Servo/CVariable.h b/SourceCode/Bond/Servo/CVariable.h
index 8cf68a7..597b84d 100644
--- a/SourceCode/Bond/Servo/CVariable.h
+++ b/SourceCode/Bond/Servo/CVariable.h
@@ -9,7 +9,8 @@
 		U2,
 		I2,
 		A20,
-		A50
+		A50,
+		L
 	};
 
 	class CVariable
@@ -28,8 +29,10 @@
 		std::string& getRemark();
 		void setValue(__int64 value);
 		void setValue(const char* pszValue);
+		void setValue(std::vector<CVariable>& vars);
 		std::string getValue();
 		__int64 getIntValue();
+		std::vector<CVariable>& getVarsValue();
 
 	private:
 		unsigned int m_nVarialbeId;
@@ -38,6 +41,7 @@
 		std::string m_strRemark;
 		__int64 m_nValue;
 		std::string m_strValue;
+		std::vector<CVariable> m_varsValue;
 	};
 }
 

--
Gitblit v1.9.3