using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Calculation.DispatchAna.Model { /// /// 当前泵站能效分析记录 /// public class EtaAnaRecord4Station { /// /// /// public EtaAnaRecord4Station() { } /// /// 名称 /// public string Name { get; set; } /// /// 流量 /// public double? Q { get; set; } /// /// 功率 /// public double? P { get; set; } /// /// 扬程 /// public double? H { get; set; } /// /// 效率 /// public double? E { get; set; } /// /// 千吨能耗 /// public double? WP { get; set; } /// /// 单位能耗 /// public double? UWP { get; set; } /// /// 运行状态 /// public int RunStatus { get; set; } /// /// 子项集合 /// public List Items { get; set; } } }