using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BatCharging.Model { public class CMD2 { /// /// 预留 /// public UInt16 value01 { get; set; } /// /// 预留 /// public UInt16 value02 { get; set; } /// /// 充电桩编码 32位 ASCII 编码 /// public string value03 { get; set; } /// /// 类型 /// 0-查询 /// 1-设置 /// public byte value04 { get; set; } /// /// 设置/查询参数启始地址 /// public UInt32 value05 { get; set; } /// /// 设置/查询个数 1 同设置命令地址 /// public byte value06 { get; set; } /// /// 设置/查询结果 /// 0 表示成功 /// 其它失败 /// public byte value07 { get; set; } /// /// 查询参数信息 /// public string value08 { get; set; } } }