namespace Yw.WinFrmUI.Phart
{
///
/// 泵设计点
///
public class PumpDesignPointViewModel
{
public PumpDesignPointViewModel() { }
public PumpDesignPointViewModel(PumpDesignPointViewModel rhs)
{
this.Id = rhs.Id;
this.Name= rhs.Name;
this.Q = rhs.Q;
this.H = rhs.H;
this.E = rhs.E;
this.P = rhs.P;
this.N = rhs.N;
this.Hz = rhs.Hz;
}
///
/// 标示
///
public string Id { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 流量
///
public double Q { get; set; }
///
/// 扬程
///
public double H { get; set; }
///
/// 效率
///
public double? E { get; set; }
///
/// 功率
///
public double? P { get; set; }
///
/// 转速
///
public double N { get; set; }
///
/// 频率
///