namespace IStation.Entity { /// /// 分析结论 /// public class AnalysisConclusion : BaseEntity, System.ICloneable { /// /// /// public AnalysisConclusion() { } /// /// /// public AnalysisConclusion(AnalysisConclusion rhs) { this.ID = rhs.ID; this.CombineID = rhs.CombineID; this.Pump = rhs.Pump; this.Head = rhs.Head; this.Flow = rhs.Flow; this.Power = rhs.Power; this.WP = rhs.WP; this.UWP = rhs.UWP; } /// /// 组合标识 /// public long CombineID { get; set; } /// /// 泵1 /// public double Pump { get; set; } /// /// 扬程 /// public double Head { get; set; } /// /// 总流量 /// public double Flow { get; set; } /// /// 总功率 /// public double Power { get; set; } /// /// 千吨水能耗 /// public double WP { get; set; } /// /// 单位能耗 /// public double UWP { get; set; } /// /// /// /// public AnalysisConclusion Clone() { return (AnalysisConclusion)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }