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.

39 lines
938 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BatCharging.Model
{
public class CMD3
{
/// <summary>
/// 预留
/// </summary>
public UInt16 value1 { get; set; }
/// <summary>
/// 预留
/// </summary>
public UInt16 value2 { get; set; }
/// <summary>
/// 类型
/// <para>0查询</para>
/// <para>1设置</para>
/// </summary>
public byte value3 { get; set; }
/// <summary>
/// 设置/查询参数起始地址
/// </summary>
public UInt32 value4 { get; set; }
/// <summary>
/// 设置参数字节数
/// </summary>
public UInt16 value5 { get; set; }
/// <summary>
/// 设置数据
/// </summary>
public byte[] value6 { get; set; }
}
}