wanshenmean
2 天以前 c9bdb37a8b4ff4f326f2ea0a6cc56131dca62d53
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" } }
            };
    }
}