using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IStation.Application
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public class DemoEnginePumpLeftBottomInfoDto
|
{
|
/// <summary>
|
/// 曲线上点数据(流量扬程)
|
/// </summary>
|
public List<Model.CurvePoint> CurveInfoQH { get; set; }
|
|
/// <summary>
|
/// 曲线上点数据(流量功率)
|
/// </summary>
|
public List<Model.CurvePoint> CurveInfoQE { get; set; }
|
|
/// <summary>
|
/// 曲线上点数据(流量效率)
|
/// </summary>
|
public List<Model.CurvePoint> CurveInfoQP { get; set; }
|
|
/// <summary>
|
/// 运行点数据(历史)(流量扬程)
|
/// </summary>
|
public List<Model.CurvePoint> HistoryRunPointQH { get; set; }
|
|
/// <summary>
|
/// 运行点数据(历史)(流量功率)
|
/// </summary>
|
public List<Model.CurvePoint> HistoryRunPointQE { get; set; }
|
|
/// <summary>
|
/// 运行点数据(历史)(流量效率)
|
/// </summary>
|
public List<Model.CurvePoint> HistoryRunPointQP { get; set; }
|
}
|
}
|