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