duheng
2025-03-28 b266e82b9a377fa35a766f7a3a2f5aa95f3c9125
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
namespace PBS.WinFrmUI.Hydro
{
    public class SimuPumpViewModel
    {
        public long ID { get; set; }
        public string Name { get; set; }
        public string Code { get; set; }
        public double Qr { get; set; }
        public double Hr { get; set; }
        public double Nr { get; set; }
        public double Pr { get; set; }
        public double Er { get; set; }
        public double? Ic { get; set; }
        public double? Oc { get; set; }
        public double? IOd { get; set; }
        public double? Ie { get; set; }
        public double? Oe { get; set; }
        public bool IsBp { get; set; }
        public bool IsSxp { get; set; }
        public Yw.Pump.CurveQH CurveQH { get; set; } 
        public Yw.Pump.CurveQP CurveQP { get; set; }
    }
 
}