using Yw.Service.Basic; namespace IStation.Server { /// /// /// public class EpEtaPumpAnalyContextItem { /// /// /// public EpEtaPumpAnalyContextItem() { } /// /// /// public EpEtaPumpAnalyContextItem(Yw.Model.EquipmentExPropList rhs) { this.ID = rhs.ID; this.Name = rhs.Name; this.NO = rhs.NO; this.Description = rhs.Description; this.Nr = (double?)rhs.GetSysPropValue(Yw.Assets.Prop.Nr); this.Qr = (double?)rhs.GetSysPropValue(Yw.Assets.Prop.Qr); this.Hr = (double?)rhs.GetSysPropValue(Yw.Assets.Prop.Hr); this.Pr = (double?)rhs.GetSysPropValue(Yw.Assets.Prop.Pr); this.Er = (double?)rhs.GetSysPropValue(Yw.Assets.Prop.Er); this.Di = (double?)rhs.GetSysPropValue(Yw.Assets.Prop.Di); this.Dc = (double?)rhs.GetSysPropValue(Yw.Assets.Prop.Dc); this.Zi = (double?)rhs.GetSysPropValue(Yw.Assets.Prop.Zi); this.Zc = (double?)rhs.GetSysPropValue(Yw.Assets.Prop.Zc); } /// /// id /// public long ID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 编号 /// public string NO { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// 额定转速 /// public double? Nr { get; set; } /// /// 额定流量 /// public double? Qr { get; set; } /// /// 额定扬程 /// public double? Hr { get; set; } /// /// 额定功率 /// public double? Pr { get; set; } /// /// 额定效率 /// public double? Er { get; set; } /// /// 进口口径 mm /// public double? Di { get; set; } /// /// 出口口径 mm /// public double? Dc { get; set; } /// /// 进口标高 /// public double? Zi { get; set; } /// /// 出口标高 /// public double? Zc { get; set; } /// /// 图表上下文项 /// public EpEtaDiagramAnalyContextItem DiagramContextItem { get; set; } } }