24 lines
531 B
C#
24 lines
531 B
C#
|
|
namespace JiShe.CollectBus.Protocol.Contracts.SendData
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 返回3761报文结果
|
|||
|
|
/// </summary>
|
|||
|
|
public class Telemetry3761PacketResponse
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 帧序列域SEQ
|
|||
|
|
/// </summary>
|
|||
|
|
public int Seq { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 地址域A3的主站地址MSA
|
|||
|
|
/// </summary>
|
|||
|
|
public int MSA { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 报文体
|
|||
|
|
/// </summary>
|
|||
|
|
public byte[] Data { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|