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

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