31 lines
696 B
C#
31 lines
696 B
C#
|
|
using JiShe.CollectBus.Common.Models;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace JiShe.CollectBus.Common.BuildSendDatas
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 报文构建返回结果
|
|||
|
|
/// </summary>
|
|||
|
|
public class TelemetryPacketResponse
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 帧序列域SEQ
|
|||
|
|
/// </summary>
|
|||
|
|
public required Seq Seq { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 地址域A3的主站地址MSA
|
|||
|
|
/// </summary>
|
|||
|
|
public int MSA { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 报文体
|
|||
|
|
/// </summary>
|
|||
|
|
public required byte[] Data { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|