using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JiShe.CollectBus.Common.BuildSendDatas { /// /// 报文构建参数 /// public class TelemetryPacketRequest { /// /// 集中器地址 /// public string FocusAddress { get; set; } /// /// 抄读功能码 /// public int Fn { get; set; } /// /// 抄读计量点,也就是终端电表对应端口 /// public int Pn { get; set; } /// /// 透明转发单元 /// public List DataUnit { get; set; } } }