using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JiShe.CollectBus.Protocol.Dto { public class UnitDataDto { /// /// 集中器地址 /// public string? Code { get; set; } /// /// AFN功能码 /// public int AFN { get; set; } /// /// 信息点 /// public int Pn { get; set; } /// /// 信息类 /// public int Fn { get; set; } /// /// 数据时标(最近数据时间点的时间),如:8:00 08:15 记录08:15 /// public string? DataTime { get; set; } /// /// 密度(分) /// public int TimeDensity { get; set; } } }