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
876 B
32 lines
876 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BatCharging.Model
|
|
{
|
|
public class CMD401
|
|
{
|
|
/// <summary>
|
|
/// 预留1 长度2byte
|
|
/// </summary>
|
|
public UInt16 reserved1 { get; set; }
|
|
/// <summary>
|
|
/// 预留2 长度2byte
|
|
/// </summary>
|
|
public UInt16 reserved2 { get; set; }
|
|
/// <summary>
|
|
/// 查询记录起始索引
|
|
/// 值越大表示越旧,
|
|
/// 0 表示查询最近一条充电记录
|
|
/// 1 表示查询最近倒数第 2 次充电记录,以此类推
|
|
/// </summary>
|
|
public UInt32 startingIndexOfQueryRecord { get; set; }
|
|
/// <summary>
|
|
/// 充电流水号 32
|
|
/// </summary>
|
|
public string chargingSerialNumber { get; set; }
|
|
}
|
|
}
|