namespace IStation.Application { /// /// 泵站调度结果 /// public class PumpDispatchOutput { /// /// /// public PumpDispatchOutput() { } /// /// /// public PumpDispatchOutput(PumpDispatchOutput rhs) { this.Id = rhs.Id; this.Index = rhs.Index; this.Name = rhs.Name; this.IsBp = rhs.IsBp; this.Q = rhs.Q; this.H = rhs.H; this.E = rhs.E; this.P = rhs.P; this.Frequency = rhs.Frequency; this.Speed = rhs.Speed; } /// /// /// public PumpDispatchOutput(string id, int index, string name, bool isBp, double q, double h, double e, double p, double frequency, double speed) { this.Id = id; this.Index = index; this.Name = name; this.IsBp = isBp; this.Q = q; this.H = h; this.E = e; this.P = p; this.Frequency = frequency; this.Speed = speed; } /// /// 机泵标识 /// public string Id { get; set; } /// /// 机泵索引 从0开始 /// public int Index { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 是否变频 /// public bool IsBp { get; set; } /// /// 流量 m³/h /// public double Q { get; set; } /// /// 扬程 m /// public double H { get; set; } /// /// 效率 % /// public double E { get; set; } /// /// 功率 kw /// public double P { get; set; } /// /// 频率 hz /// public double Frequency { get; set; } /// /// 转速 r/min /// public double Speed { get; set; } } }