wanshenmean
2026-03-06 f81c33a58bb17a84aae98d31fc3bcfdddd4f76fd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System.Collections.Generic;
 
namespace WIDESEA_Core.Core
{
    /// <summary>
    /// 自动出库任务配置选项
    /// </summary>
    public class AutoOutboundTaskOptions
    {
        /// <summary>
        /// 是否启用自动出库任务
        /// </summary>
        public bool Enable { get; set; } = true;
 
        /// <summary>
        /// 检查间隔(秒)
        /// </summary>
        public int CheckIntervalSeconds { get; set; } = 300;
 
        /// <summary>
        /// 按巷道前缀配置目标地址
        /// </summary>
        public Dictionary<string, string> TargetAddresses { get; set; }
            = new()
            {
                { "GW", "10081" },
                { "CW", "10080" }
            };
    }
}