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 AutomaticGetTerminalVersionTime { get; set; } /// /// 自动获取远程通信模块(SIM)版本时间 /// public required string AutomaticGetTelematicsModuleTime { get; set; } } }