namespace IStation.Application.SZJT
|
{
|
/// <summary>
|
/// 泵站列表项
|
/// </summary>
|
public class BigScreenSingleStationEnginePumpListItemDto
|
{
|
/// <summary>
|
/// id
|
/// </summary>
|
public long ID { get; set; }
|
|
/// <summary>
|
/// 名称
|
/// </summary>
|
public string Name { get; set; }
|
|
/// <summary>
|
/// 状态
|
/// </summary>
|
public BigScreenSingleStationEnginePumpListKpiItemDto Rs { get; set; }
|
|
/// <summary>
|
/// 频率
|
/// </summary>
|
public BigScreenSingleStationEnginePumpListKpiItemDto Hz { get; set; }
|
|
/// <summary>
|
/// 功率
|
/// </summary>
|
public BigScreenSingleStationEnginePumpListKpiItemDto P { get; set; }
|
|
|
}
|
}
|