namespace IStation.Application.SZJT
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public class BigScreenSingleStationKpiDto
|
{
|
/// <summary>
|
/// 瞬时流量
|
/// </summary>
|
public BigScreenSingleStationKpiItemDto Q { get; set; }
|
|
/// <summary>
|
/// 出口压力
|
/// </summary>
|
public BigScreenSingleStationKpiItemDto Pr { get; set; }
|
|
/// <summary>
|
/// 浊度
|
/// </summary>
|
public BigScreenSingleStationKpiItemDto ZD { get; set; }
|
|
/// <summary>
|
/// 余氯
|
/// </summary>
|
public BigScreenSingleStationKpiItemDto YL { get; set; }
|
|
/// <summary>
|
/// 运行列表
|
/// </summary>
|
public List<BigScreenSingleStationKpiRunItemDto> RunList { get; set; }
|
|
|
}
|
}
|