namespace Yw.WinFrmUI.Phart { /// /// /// public class QPViewModel : Yw.Pump.CurveQP { public QPViewModel() { } public QPViewModel(Yw.Pump.CurveQP qh) : base(qh) { } public QPViewModel(Yw.Ahart.eFeatType feat_type, List pt_list) : base(feat_type, pt_list) { } public QPViewModel(Yw.Pump.CurveQP curve, QPGraphParasViewModel graph_paras, CurveGeometryParasViewModel geometry_paras) : base(curve) { this.Hz = graph_paras.Hz; this.N = graph_paras.N; this.DefinePoints = geometry_paras.DefinePoints; } /// /// 转速 /// public double N { get; set; } /// /// 频率 /// public double Hz { get; set; } /// /// 定义点列表 /// public List DefinePoints { get; set; } } }