namespace IStation.Entity { /// /// 分析参数 /// public class AnalysisParameter : BaseEntity, System.ICloneable { /// /// /// public AnalysisParameter() { } /// /// /// public AnalysisParameter(AnalysisParameter rhs) { this.ID = rhs.ID; this.PumpID = rhs.PumpID; this.Hz = rhs.Hz; this.Head = rhs.Head; this.PressureDiff = rhs.PressureDiff; this.Flow = rhs.Flow; this.Power = rhs.Power; this.WP = rhs.WP; this.UWP = rhs.UWP; } /// /// 泵标识 /// public long PumpID { get; set; } /// /// 频率 /// public double Hz { get; set; } /// /// 扬程 /// public double Head { get; set; } /// /// 压差 /// public double PressureDiff { get; set; } /// /// 总流量 /// public double Flow { get; set; } /// /// 总功率 /// public double Power { get; set; } /// /// 千吨水能耗 /// public double WP { get; set; } /// /// 单位能耗 /// public double UWP { get; set; } /// /// /// /// public AnalysisParameter Clone() { return (AnalysisParameter)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }