You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.3 KiB
52 lines
1.3 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BatCharging.Model
|
|
{
|
|
/// <summary>
|
|
/// 4.2.12 充放电机应答版本号
|
|
/// </summary>
|
|
public class AnsVerNum
|
|
{
|
|
/// <summary>
|
|
/// 软件版本号
|
|
/// </summary>
|
|
public byte SofVerNum1 { get; set; }
|
|
/// <summary>
|
|
/// 软件版本号
|
|
/// </summary>
|
|
public byte SofVerNum2 { get; set; }
|
|
/// <summary>
|
|
/// 软件版本号
|
|
/// </summary>
|
|
public byte SofVerNum3 { get; set; }
|
|
/// <summary>
|
|
/// 硬件版本号
|
|
/// </summary>
|
|
public byte HarVerNum1 { get; set; }
|
|
/// <summary>
|
|
/// 硬件版本号
|
|
/// </summary>
|
|
public byte HarVerNum2 { get; set; }
|
|
/// <summary>
|
|
/// 硬件版本号
|
|
/// </summary>
|
|
public byte HarVerNum3 { get; set; }
|
|
/// <summary>
|
|
/// 预留
|
|
/// </summary>
|
|
public byte reserved1 { get; set; }
|
|
/// <summary>
|
|
/// 预留
|
|
/// </summary>
|
|
public byte reserved2 { get; set; }
|
|
/// <summary>
|
|
/// 预留
|
|
/// </summary>
|
|
public byte reserved3 { get; set; }
|
|
}
|
|
}
|