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.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace HybirdFrameworkEntity
|
|
|
|
|
{
|
|
|
|
|
public class CMD102
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 预留
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ushort Reserved1 { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 预留
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ushort Reserved2 { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 充电桩编码 32
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ASCIINum { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 心跳序号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ushort HeartNum { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 各枪状态 16位
|
|
|
|
|
/// HEX,每位代表一个枪,可
|
|
|
|
|
/// 表示 1~128 枪的状态
|
|
|
|
|
/// 0-未插入枪
|
|
|
|
|
/// 1-已插枪
|
|
|
|
|
/// </summary>
|
|
|
|
|
public byte[] GunStatus = new byte[16];
|
|
|
|
|
}
|
|
|
|
|
}
|