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.

50 lines
1.3 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HybirdFrameworkEntity
{
public class CMD1302
{
/// <summary>
/// 预留
/// </summary>
public ushort Reserved1 { get; set; }
/// <summary>
/// 预留
/// </summary>
public ushort Reserved2 { get; set; }
/// <summary>
/// 充电桩编码 32
/// </summary>
public string ASCIINum { get; set; }
/// <summary>
/// 白名单类型
/// <para>1-充电卡号</para>
/// <para>2-VIN 码</para>
/// </summary>
public byte WhitelistType { get; set; }
/// <summary>
/// 操作
/// <para>0增加</para>
/// <para>2清空</para>
/// <para>4:查询白名单版本号</para>
/// </summary>
public byte Operate { get; set; }
/// <summary>
/// 名单版本
///
/// 当前充电系统最新的名单版本号。为 0 时
/// 则充电系统将清空白名单。
/// </summary>
public uint ListVersioe { get; set; }
/// <summary>
/// 操作结果
/// 0更新成功其他更新失败
/// </summary>
public byte OperatResult { get; set; }
}
}