53 lines
1.3 KiB
C#
53 lines
1.3 KiB
C#
|
|
using Microsoft.VisualBasic;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace JiShe.CollectBus.Common.Models
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 终端版本信息
|
|||
|
|
/// </summary>
|
|||
|
|
public class TerminalVersionInfoAnalyze
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 厂商代号
|
|||
|
|
/// </summary>
|
|||
|
|
public string MakerNo { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 设备编号
|
|||
|
|
/// </summary>
|
|||
|
|
public string DeviceNo { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 终端软件版本号
|
|||
|
|
/// </summary>
|
|||
|
|
public string SoftwareVersionNo { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 终端软件发布日期:年月日
|
|||
|
|
/// </summary>
|
|||
|
|
public DateTime SoftwareReleaseDate { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 容量信息码
|
|||
|
|
/// </summary>
|
|||
|
|
public string CapacityInformationCode { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 协议版本号
|
|||
|
|
/// </summary>
|
|||
|
|
public string ProtocolVersionNo { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 终端硬件版本号
|
|||
|
|
/// </summary>
|
|||
|
|
public string HardwareVersionNo { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 终端硬件发布日期:年月日
|
|||
|
|
/// </summary>
|
|||
|
|
public DateTime HardwareReleaseDate { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|