namespace IStation.Application
|
{
|
/// <summary>
|
/// 监测地图KPI信息
|
/// </summary>
|
public class StationMapMonitorKpiInfoDto
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public StationMapMonitorKpiInfoDto(Model.LogicSite rhs)
|
{
|
this.StationID = rhs.ID;
|
this.Name = rhs.Name;
|
this.LastRecordList = new List<StationMapMonitorKpiLastRecordDto>();
|
this.LastStatusList = new List<StationMapMonitorKpiLastStatusDto>();
|
}
|
|
/// <summary>
|
/// 泵站id
|
/// </summary>
|
public long StationID { get; set; }
|
|
/// <summary>
|
/// 名称
|
/// </summary>
|
public string Name { get; set; }
|
|
/// <summary>
|
/// 位置
|
/// </summary>
|
public Yw.Model.Map.Marker Position { get; set; }
|
|
/// <summary>
|
/// 最后记录列表
|
/// </summary>
|
public List<StationMapMonitorKpiLastRecordDto> LastRecordList { get; set; }
|
|
/// <summary>
|
/// 最后状态列表
|
/// </summary>
|
public List<StationMapMonitorKpiLastStatusDto> LastStatusList { get; set; }
|
|
|
}
|
}
|