using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HStation.WinFrmUI { /// /// /// public class XhsProjectSimulationAnalySinglePumpViewModel { /// /// id /// public long ID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 编码 /// public string Code { get; set; } /// /// Open Closed /// public string RunStatus { get; set; } /// /// /// public bool IsBp { get; set; } /// /// 50hz 60hz /// public double RatedHz { get; set; } /// /// 设定频率 /// public double CurrentHz { get; set; } /// /// 流量扬程线 /// public List CurveQH { get; set; } /// /// /// public List CurveQP { get; set; } /// /// /// public List CurveQE { get; set; } /// /// 计算流量 /// public double? CalcuQ { get; set; } /// /// 计算扬程 /// public double? CalcuH { get; set; } } }