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
881 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BatCharging.Model
{
public class CMD1504
{
/// <summary>
/// 预留1 长度2byte
/// </summary>
public UInt16 reserved1 { get; set; }
/// <summary>
/// 预留2 长度2byte
/// </summary>
public UInt16 reserved2 { get; set; }
/// <summary>
/// 标识
/// <para>0-正常接收</para>
/// <para>1-接收出错,中断此次日志上传</para>
/// </summary>
public UInt32 logo { get; set; }
/// <summary>
/// 已成功接收的报文编号
/// 这个要与最后一次收到的 1503 报文中的字段 4 一样。
/// </summary>
public UInt32 successReservedMessageNum { get; set; }
}
}