namespace JiShe.CollectBus.Protocol.Contracts.Protocol.Dto { public class AFN9_F1_AnalysisDto { public int FocusID { get; set; } public string? AreaCode { get; set; } public string? Address { get; set; } /// /// 厂商代号 /// public string? MakerNo { get; set; } /// /// 设备编号 /// public string? DeviceNo { get; set; } /// /// 终端软件版本号 /// public string? SoftwareVersion { get; set; } /// /// 终端软件发布日期:日月年 /// public string? SoftwareReleaseDate { get; set; } /// /// 硬件软件版本号 /// public string? HardwareVersion { get; set; } /// /// 硬件软件发布日期:日月年 /// public string? HardwareReleaseDate { get; set; } public string? AddDate { get; set; } } }