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