namespace IStation.Application
{
///
/// 监测地图KPI信息
///
public class PressMeterMapMonitorKpiInfoDto
{
///
///
///
public PressMeterMapMonitorKpiInfoDto(Yw.Model.Equipment rhs)
{
this.PressMeterID = rhs.ID;
this.Name = rhs.Name;
this.LastRecordList = new List();
}
///
/// 压力计id
///
public long PressMeterID { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 位置
///
public Yw.Model.Map.Marker Position { get; set; }
///
/// 最后记录列表
///
public List LastRecordList { get; set; }
}
}