namespace WIDESEA_Core.Core { /// /// 出库时效配置选项,绑定 appsettings.json 中的 OutboundTimeConfig 节 /// public class OutboundTimeConfigOptions { /// /// 配置节名称 /// public const string SectionName = "OutboundTimeConfig"; /// /// GW首放入库时效(小时),默认24小时 /// public double Gw1FirstHours { get; set; } = 24; /// /// GW二放入库时效(小时),默认0.05小时(约3分钟) /// public double Gw1SecondHours { get; set; } = 0.05; /// /// CW出库时效(小时),默认3小时 /// public double Cw1Hours { get; set; } = 3; } }