using System.Collections.Generic;
namespace WIDESEA_Core.Core
{
///
/// 自动出库任务配置选项
///
public class AutoOutboundTaskOptions
{
///
/// 是否启用自动出库任务
///
public bool Enable { get; set; } = true;
///
/// 检查间隔(秒)
///
public int CheckIntervalSeconds { get; set; } = 300;
///
/// 按巷道前缀配置目标地址(支持多出库口)
///
public Dictionary> TargetAddresses { get; set; }
= new()
{
{ "GW", new List { "10081" } },
{ "CW", new List { "10080" } }
};
}
}