namespace JiShe.CollectBus.Protocol.T37612012.SendData
{
///
/// 返回3761报文结果
///
public class Telemetry3761PacketResponse
{
///
/// 帧序列域SEQ
///
public int Seq { get; set; }
///
/// 地址域A3的主站地址MSA
///
public int MSA { get; set; }
///
/// 帧功能域AFN
///
public int AFn { get; set; }
///
/// 帧功能域FN
///
public int Fn { get; set; }
///
/// 抄读计量点,也就是终端电表对应端口
///
public int Pn { get; set; }
///
/// 报文体
///
public byte[] Data { get; set; }
}
}