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.
42 lines
1013 B
42 lines
1013 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Security.Cryptography.X509Certificates;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BatCharging.Model
|
|
{
|
|
public class CMD9
|
|
{
|
|
/// <summary>
|
|
/// 预留
|
|
/// </summary>
|
|
public ushort value01 { get; set; }
|
|
/// <summary>
|
|
/// 预留
|
|
/// </summary>
|
|
public ushort value02 { get; set; }
|
|
/// <summary>
|
|
/// 充电枪号
|
|
/// </summary>
|
|
public byte value03 { get; set; }
|
|
/// <summary>
|
|
/// 执行结果
|
|
/// </summary>
|
|
public uint value04 { get; set; }
|
|
/// <summary>
|
|
/// 命令地址
|
|
/// </summary>
|
|
public uint value05 { get; set; }
|
|
/// <summary>
|
|
/// 数据长度
|
|
/// </summary>
|
|
public uint value06 { get; set; }
|
|
/// <summary>
|
|
/// 数据
|
|
/// </summary>
|
|
public byte[] value07 { get; set; }
|
|
}
|
|
}
|