namespace IStation.Application { /// /// 监测列表KPI信息 /// public class StationListMonitorKpiInfoDto { /// /// /// public StationListMonitorKpiInfoDto(Yw.Model.LogicSite rhs) { this.StationID = rhs.ID; this.Name = rhs.Name; this.LastRecordList = new List(); this.LastStatusList = new List(); } /// /// 泵站id /// public long StationID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 最后记录列表 /// public List LastRecordList { get; set; } /// /// 最后状态列表 /// public List LastStatusList { get; set; } } }