| | |
| | | { |
| | | public class PumpSerialParallelViewModel |
| | | { |
| | | public PumpSerialParallelViewModel() { } |
| | | public PumpSerialParallelViewModel(PumpSerialParallelViewModel rhs) |
| | | { |
| | | this.Id = rhs.Id; |
| | | this.Name = rhs.Name; |
| | | this.IsBp = rhs.IsBp; |
| | | this.RatedSpeed = rhs.RatedSpeed; |
| | | this.CurrentSpeed = rhs.CurrentSpeed; |
| | | this.CurrentHz = rhs.CurrentHz; |
| | | this.Qh = rhs.Qh; |
| | | this.Qe = rhs.Qe; |
| | | this.Qp = rhs.Qp; |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 标识 |
| | | /// </summary> |
| | |
| | | /// </summary> |
| | | public string Name { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 颜色 |
| | | /// </summary> |
| | | public Color Color { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 是否是串并联线 |
| | | /// 是否变频 |
| | | /// </summary> |
| | | public bool IsSerialParallel { get; set; } |
| | | |
| | | public bool IsBp { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 额定转速 |
| | | /// </summary> |
| | | public double RatedSpeed { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 当前转速 |
| | | /// </summary> |
| | | public double CurrentSpeed { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 当前频率 |
| | | /// </summary> |
| | | public double CurrentHz { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 流量扬程线 |
| | | /// </summary> |