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