1
xiazhengtongxue
20 小时以前 8120089e80f4873fb3f67ecb8405a460f3a1afbb
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" } }
            };
    }
}