namespace JiShe.CollectBus.Protocol.Models
{
///
/// 报文构建返回结果
///
public class ProtocolBuildResponse
{
///
/// 是否成功
///
public bool IsSuccess { get; set; } = false;
///
/// 帧功能域AFN
///
public int AFn { get; set;}
///
/// 帧功能域FN
///
public int Fn { get; set; }
///
/// 抄读计量点,也就是终端电表对应端口
///
public int Pn { get; set; }
///
/// 帧序列域SEQ
///
public int Seq { get; set; }
///
/// 地址域A3的主站地址MSA
///
public int MSA { get; set; }
///
/// 任务时间戳
///
public long TimeStamp { get; set; }
///
/// 报文体
///
public byte[] Data { get; set; }
}
}