namespace IStation.Model { /// /// /// public class ScheduleConclusion : BaseModel, System.ICloneable { /// /// /// public ScheduleConclusion() { } /// /// /// /// public ScheduleConclusion(ScheduleConclusion rhs) : base(rhs) { this.RequestID = rhs.RequestID; this.Station = rhs.Station; this.TotalFlow = rhs.TotalFlow; this.TotalHead = rhs.TotalHead; this.TotalPower = rhs.TotalPower; this.TotalEfficiency = rhs.TotalEfficiency; this.WP = rhs.WP; this.UWP = rhs.UWP; this.Flags = rhs.Flags; this.MeritRatio = rhs.MeritRatio; } /// /// /// /// public void Reset(ScheduleConclusion rhs) { this.RequestID = rhs.RequestID; this.Station = rhs.Station; this.TotalFlow = rhs.TotalFlow; this.TotalHead = rhs.TotalHead; this.TotalPower = rhs.TotalPower; this.TotalEfficiency = rhs.TotalEfficiency; this.WP = rhs.WP; this.UWP = rhs.UWP; this.Flags = rhs.Flags; this.MeritRatio = rhs.MeritRatio; } /// /// 请求标识 /// public long RequestID { get; set; } /// /// 泵站 /// public eDockingStation Station { get; set; } /// /// 总流量 /// public double TotalFlow { get; set; } /// /// 总扬程 /// public double TotalHead { get; set; } /// /// 总功率 /// public double TotalPower { get; set; } /// /// 总效率 /// public double TotalEfficiency { get; set; } /// /// 千吨水能耗 /// public double WP { get; set; } /// /// 单位水能耗 /// public double UWP { get; set; } /// /// 运行标志列表 /// public string Flags { get; set; } /// /// 择优率 /// public double MeritRatio { get; set; } /// /// /// /// public ScheduleConclusion Clone() { return (ScheduleConclusion)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }