namespace HStation.WinFrmUI
{
///
/// 水泵视图
/// 整个模型的水泵信息
///
public class SimulationPrintPumpViewModel
{
///
///
///
public SimulationPrintPumpViewModel() { }
///
///
///
public SimulationPrintPumpViewModel(Yw.Model.HydroPumpInfo rhs)
{
this.BeginGroup = rhs.BeginGroup;
this.Name = rhs.Name;
this.Code = rhs.Code;
this.ModelType = rhs.ModelType;
this.RatedQ = rhs.RatedQ;
this.RatedH = rhs.RatedH;
this.RatedP = rhs.RatedP;
this.RatedN = rhs.RatedN;
}
///
/// 分组
///
public string BeginGroup { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 编码
///
public string Code { get; set; }
///
/// 型号
///
public string ModelType { get; set; }
///
/// 额定流量
///
public double RatedQ { get; set; }
///
/// 额定扬程
///
public double RatedH { get; set; }
///
/// 额定功率
///
public double RatedP { get; set; }
///
/// 额定转速
///
public double RatedN { get; set; }
}
}