2025-04-25 09:28:20 +08:00
|
|
|
|
namespace JiShe.CollectBus.Common
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 服务器应用配置
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class ServerApplicationOptions
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 服务器标识
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public required string ServerTagName { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 首次采集时间
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public DateTime? FirstCollectionTime { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 自动验证时间
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public required string AutomaticVerificationTime { get; set;}
|
2025-04-27 09:40:31 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 自动获取终端版时间
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public required string AutomaticGetTerminalVersionTime { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 自动获取远程通信模块(SIM)版本时间
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public required string AutomaticGetTelematicsModuleTime { get; set; }
|
2025-04-25 09:28:20 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|