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

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BatCharging.Model
{
public class CMD1302
{
/// <summary>
/// 预留
/// </summary>
public UInt16 value01 { get; set; }
/// <summary>
/// 预留
/// </summary>
public UInt16 value02 { get; set; }
/// <summary>
/// 充电桩编码 32
/// </summary>
public string value03 { get; set; }
/// <summary>
/// 白名单类型
/// <para>1-充电卡号</para>
/// <para>2-VIN 码</para>
/// </summary>
public byte value04 { get; set; }
/// <summary>
/// 操作
/// <para>0增加</para>
/// <para>2清空</para>
/// <para>4:查询白名单版本号</para>
/// </summary>
public byte value05 { get; set; }
/// <summary>
/// 名单版本
///
/// 当前充电系统最新的名单版本号。为 0 时
/// 则充电系统将清空白名单。
/// </summary>
public UInt32 value06 { get; set; }
/// <summary>
/// 操作结果
/// 0更新成功其他更新失败
/// </summary>
public byte value07 { get; set; }
}
}