From c493779a8504fe1eb548c865ff268a7f7436ec01 Mon Sep 17 00:00:00 2001
From: wanshenmean <cathay_xy@163.com>
Date: 星期四, 19 三月 2026 11:43:36 +0800
Subject: [PATCH] feat: 集成机械手客户端并重构模拟器前端工作台

---
 Code/WCS/WIDESEAWCS_S7Simulator/WIDESEAWCS_S7Simulator.Core/Entities/InstanceConfig.cs |   22 +++++++++++++---------
 1 files changed, 13 insertions(+), 9 deletions(-)

diff --git a/Code/WCS/WIDESEAWCS_S7Simulator/WIDESEAWCS_S7Simulator.Core/Entities/InstanceConfig.cs b/Code/WCS/WIDESEAWCS_S7Simulator/WIDESEAWCS_S7Simulator.Core/Entities/InstanceConfig.cs
index bdd057c..91a7923 100644
--- a/Code/WCS/WIDESEAWCS_S7Simulator/WIDESEAWCS_S7Simulator.Core/Entities/InstanceConfig.cs
+++ b/Code/WCS/WIDESEAWCS_S7Simulator/WIDESEAWCS_S7Simulator.Core/Entities/InstanceConfig.cs
@@ -1,53 +1,57 @@
-using System.Text.Json.Serialization;
+锘縰sing System.Text.Json.Serialization;
 using WIDESEAWCS_S7Simulator.Core.Enums;
 
 namespace WIDESEAWCS_S7Simulator.Core.Entities
 {
     /// <summary>
-    /// S7鏈嶅姟鍣ㄥ疄渚嬮厤缃�
+    /// S7閺堝秴濮熼崳銊ョ杽娓氬鍘ょ純?
     /// </summary>
     public class InstanceConfig
     {
         /// <summary>
-        /// 瀹炰緥鍞竴鏍囪瘑
+        /// 鐎圭偘绶ラ崬顖欑閺嶅洩鐦�
         /// </summary>
         //[JsonPropertyName("id")]
         public string Id { get; set; } = string.Empty;
 
         /// <summary>
-        /// 瀹炰緥鍚嶇О
+        /// 鐎圭偘绶ラ崥宥囆�
         /// </summary>
         //[JsonPropertyName("name")]
         public string Name { get; set; } = string.Empty;
 
         /// <summary>
-        /// PLC鍨嬪彿
+        /// PLC閸ㄥ褰�
         /// </summary>
         //[JsonPropertyName("plcType")]
         public SiemensPLCType PLCType { get; set; }
 
         /// <summary>
-        /// 鐩戝惉绔彛
+        /// 閻╂垵鎯夌粩顖氬經
         /// </summary>
         //[JsonPropertyName("port")]
         public int Port { get; set; }
 
         /// <summary>
-        /// HSL婵�娲荤爜
+        /// HSL濠碘偓濞茶崵鐖�
         /// </summary>
         [JsonPropertyName("activationKey")]
         public string ActivationKey { get; set; } = string.Empty;
 
         /// <summary>
-        /// 鏄惁鑷姩鍚姩
+        /// 閺勵垰鎯侀懛顏勫З閸氼垰濮�
         /// </summary>
         [JsonPropertyName("autoStart")]
         public bool AutoStart { get; set; }
 
+        [JsonPropertyName("protocolTemplateId")]
+        public string ProtocolTemplateId { get; set; } = string.Empty;
+
         /// <summary>
-        /// 鍐呭瓨鍖哄煙閰嶇疆
+        /// 閸愬懎鐡ㄩ崠鍝勭厵闁板秶鐤�
         /// </summary>
         [JsonPropertyName("memoryConfig")]
         public MemoryRegionConfig MemoryConfig { get; set; } = new();
     }
 }
+

--
Gitblit v1.9.3