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.

32 lines
857 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HybirdFrameworkEntity
{
public class CMD401
{
/// <summary>
/// 预留1 长度2byte
/// </summary>
public ushort Reserved1 { get; set; }
/// <summary>
/// 预留2 长度2byte
/// </summary>
public ushort Reserved2 { get; set; }
/// <summary>
/// 查询记录起始索引
/// 值越大表示越旧,
/// 0 表示查询最近一条充电记录
/// 1 表示查询最近倒数第 2 次充电记录,以此类推
/// </summary>
public uint SelectIndex { get; set; }
/// <summary>
/// 充电流水号 32
/// </summary>
public string ChargSerialNum { get; set; }
}
}