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.
27 lines
728 B
27 lines
728 B
namespace BatCharging.Model
|
|
{
|
|
public class QueryVersionRes : ASDU
|
|
{
|
|
/// <summary>
|
|
///软件版本号
|
|
/// </summary>
|
|
public byte SoftwareVersion0 { get; set; }
|
|
public byte SoftwareVersion1 { get; set; }
|
|
public byte SoftwareVersion2 { get; set; }
|
|
|
|
/// <summary>
|
|
///硬件版本号
|
|
/// </summary>
|
|
public byte HardwareVersion0 { get; set; }
|
|
public byte HardwareVersion1 { get; set; }
|
|
public byte HardwareVersion2 { get; set; }
|
|
|
|
/// <summary>
|
|
///预留
|
|
/// </summary>
|
|
public byte Remark0 { get; set; }
|
|
public byte Remark1 { get; set; }
|
|
public byte Remark2 { get; set; }
|
|
}
|
|
}
|