wanshenmean
2026-03-09 2df3b287a5c868f987b99ff00dc1d2339747b8f1
Code/WMS/WIDESEA_WMSServer/WIDESEA_Core/Core/AutoOutboundTaskOptions.cs
@@ -18,13 +18,13 @@
        public int CheckIntervalSeconds { get; set; } = 300;
        /// <summary>
        /// 按巷道前缀配置目标地址
        /// 按巷道前缀配置目标地址(支持多出库口)
        /// </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" } }
            };
    }
}