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
1.0 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Threading.Tasks;
namespace HybirdFrameworkEntity
{
public class CMD9
{
/// <summary>
/// 预留
/// </summary>
public ushort Reserved1 { get; set; }
/// <summary>
/// 预留
/// </summary>
public ushort Reserved2 { get; set; }
/// <summary>
/// 充电枪号
/// </summary>
public byte ChargGunNum { get; set; }
/// <summary>
/// 执行结果
/// </summary>
public uint FWResult { get; set; }
/// <summary>
/// 命令地址
/// </summary>
public uint CommandAddress { get; set; }
/// <summary>
/// 数据长度
/// </summary>
public uint DataLength { get; set; }
/// <summary>
/// 数据
/// </summary>
public byte[] Datas { get; set; }
}
}