using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BatCharging.Model { public class CMD102 { /// /// 预留 /// public UInt16 value01 { get; set; } /// /// 预留 /// public UInt16 value02 { get; set; } /// /// 充电桩编码 32 /// public string value03 { get;set; } /// /// 心跳序号 /// public UInt16 value04 { get; set; } /// /// 各枪状态 16位 /// HEX,每位代表一个枪,可 /// 表示 1~128 枪的状态 /// 0-未插入枪 /// 1-已插枪 /// public byte[] value05 = new byte[16]; } }