54 lines
1.5 KiB
C#
Raw Normal View History

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