using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JiShe.CollectBus.Protocol { /// /// 数据时间标记 /// public class DataTimeMark { /// /// 数据时间 /// public DateTime DataTime { get; set;} /// /// 数据点数 /// public int Point { get; set; } /// /// 冻结密度(-1、采集项本身无密度位,0、无,1、15分钟,2、30分钟,3、60分钟,245、5分钟,255、1分钟) /// public int Density { get; set; } } }