namespace IStation.Application.SZJT
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public class StationMapMonitorKpiInfoMobileDto
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public StationMapMonitorKpiInfoMobileDto(Model.LogicSite rhs)
|
{
|
this.StationID = rhs.ID;
|
this.Name = rhs.Name;
|
this.LastRecordList = new List<StationMapMonitorKpiLastRecordMobileDto>();
|
this.LastStatusList = new List<StationMapMonitorKpiLastStatusMobileDto>();
|
}
|
|
/// <summary>
|
/// 泵站id
|
/// </summary>
|
public long StationID { get; set; }
|
|
/// <summary>
|
/// 名称
|
/// </summary>
|
public string Name { get; set; }
|
|
/// <summary>
|
/// 最后记录列表
|
/// </summary>
|
public List<StationMapMonitorKpiLastRecordMobileDto> LastRecordList { get; set; }
|
|
/// <summary>
|
/// 最后状态列表
|
/// </summary>
|
public List<StationMapMonitorKpiLastStatusMobileDto> LastStatusList { get; set; }
|
|
}
|
}
|