namespace IStation.Model
|
{
|
public class Pump
|
{
|
public Pump() { }
|
public Pump(Pump rhs)
|
{
|
this.Belong = rhs.Belong;
|
this.Qr = rhs.Qr;
|
this.Hr = rhs.Hr;
|
this.Nr = rhs.Nr;
|
this.Pr = rhs.Pr;
|
this.Er = rhs.Er;
|
this.Ic = rhs.Ic;
|
this.Oc = rhs.Oc;
|
this.IOd = rhs.IOd;
|
this.IsBp = rhs.IsBp;
|
this.IsSxp = rhs.IsSxp;
|
this.CurveQH = rhs.CurveQH;
|
this.CurveQE = rhs.CurveQE;
|
this.CurveQP = rhs.CurveQP;
|
}
|
|
public int Belong { get; set; }
|
public int ID { get; set; }
|
public string Code { get; set; }
|
public string Name { 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 CurveExpress CurveQH { get; set; }
|
public CurveExpress CurveQE { get; set; }
|
public CurveExpress CurveQP { get; set; }
|
}
|
}
|