namespace JiShe.CollectBus.Common
{
///
/// 服务器应用配置
///
public class ServerApplicationOptions
{
///
/// 服务器标识
///
public required string ServerTagName { get; set; }
///
/// 系统类型
///
public required string SystemType { get; set; }
///
/// 首次采集时间
///
public DateTime? FirstCollectionTime { get; set; }
///
/// 自动验证时间
///
public required string AutomaticVerificationTime { get; set; }
///
/// 自动获取终端版时间
///
public required string AutomaticTerminalVersionTime { get; set; }
///
/// 自动获取远程通信模块(SIM)版本时间
///
public required string AutomaticTelematicsModuleTime { get; set; }
///
/// 日冻结抄读时间
///
public required string AutomaticDayFreezeTime { get; set; }
///
/// 月冻结抄读时间
///
public required string AutomaticMonthFreezeTime { get; set; }
///
/// 默认协议插件
///
public required string DefaultProtocolPlugin { get; set; }
}
}