From a9edf162ac5dd98719c2f93ab0800c98673fd220 Mon Sep 17 00:00:00 2001
From: xiazhengtongxue <133085197+xiazhengtongxue@users.noreply.github.com>
Date: 星期三, 01 四月 2026 16:14:49 +0800
Subject: [PATCH] fix: 修复AGV任务下发,修改找空闲为深度优先等

---
 Code/WMS/WIDESEA_WMSServer/WIDESEA_Core/Core/AutoOutboundTaskOptions.cs |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/Code/WMS/WIDESEA_WMSServer/WIDESEA_Core/Core/AutoOutboundTaskOptions.cs b/Code/WMS/WIDESEA_WMSServer/WIDESEA_Core/Core/AutoOutboundTaskOptions.cs
index 3822f2e..a619a6a 100644
--- a/Code/WMS/WIDESEA_WMSServer/WIDESEA_Core/Core/AutoOutboundTaskOptions.cs
+++ b/Code/WMS/WIDESEA_WMSServer/WIDESEA_Core/Core/AutoOutboundTaskOptions.cs
@@ -18,13 +18,13 @@
         public int CheckIntervalSeconds { get; set; } = 300;
 
         /// <summary>
-        /// 鎸夊贩閬撳墠缂�閰嶇疆鐩爣鍦板潃
+        /// 鎸夊贩閬撳墠缂�閰嶇疆鐩爣鍦板潃锛堟敮鎸佸鍑哄簱鍙o級
         /// </summary>
-        public Dictionary<string, string> TargetAddresses { get; set; }
+        public Dictionary<string, List<string>> TargetAddresses { get; set; }
             = new()
             {
-                { "GW", "10081" },
-                { "CW", "10080" }
+                { "GW", new List<string> { "10081" } },
+                { "CW", new List<string> { "10080" } }
             };
     }
 }

--
Gitblit v1.9.3