From febcd0c73b51b17f484ff9a9a189b1f85130c2f7 Mon Sep 17 00:00:00 2001
From: wangxinhui <wangxinhui@hnkhzn.com>
Date: 星期二, 17 三月 2026 13:52:06 +0800
Subject: [PATCH] 更新自动门,新增切卷卷绕缓存架
---
wcs-server-hbf/WIDESEA_WCS/WCSClient/PLCClient.cs | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/wcs-server-hbf/WIDESEA_WCS/WCSClient/PLCClient.cs b/wcs-server-hbf/WIDESEA_WCS/WCSClient/PLCClient.cs
index 9aaaeb6..f203baa 100644
--- a/wcs-server-hbf/WIDESEA_WCS/WCSClient/PLCClient.cs
+++ b/wcs-server-hbf/WIDESEA_WCS/WCSClient/PLCClient.cs
@@ -69,9 +69,13 @@
/// </summary>
public bool IsConnected { get; set; } = false;
+ public dt_plcinfohead Head { get; set; }
+ public List<dt_plcinfodetail> Plcinfodetails { get; set; }
public PLCClient(dt_plcinfohead head, List<dt_plcinfodetail> plcinfodetails)
{
PLCType = head.plcinfo_type;
+ Head = head;
+ Plcinfodetails = plcinfodetails;
switch (PLCType)
{
case "SiemensPLC":
--
Gitblit v1.9.3