using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
/// 能效实时记录中的QHP
///
public class EtaParallelQHP
{
///
///
///
public EtaParallelQHP() { }
///
///
///
public EtaParallelQHP(Model.EtaQHP rhs)
{
this.Q = Math.Round(rhs.Q, 1);
this.H = Math.Round(rhs.H, 2);
this.P = Math.Round(rhs.P, 1);
}
///
/// 流量
///
public double Q { get; set; }
///
/// 扬程
///
public double H { get; set; }
///
/// 功率
///
public double P { get; set; }
}
}