using System.Collections.Generic; namespace IStation.Model { /// /// 监测数据集 /// public class MonitorDataSet { /// /// 监测点标识 /// public long MonitorPointID { get; set; } /// /// 年 /// public int Year { get; set; } /// /// 月 /// public int Month { get; set; } /// /// 信号记录包集合 /// public List PacketList { get; set; } } }