namespace HStation.WinFrmUI
{
///
/// 工况视图
///
public class SimulationPrintWorkingViewModel
{
///
///
///
public SimulationPrintWorkingViewModel() { }
///
///
///
public SimulationPrintWorkingViewModel(Yw.Vmo.HydroWorkingVmo rhs)
{
this.ID = rhs.ID;
this.Name = rhs.Name;
this.Description = rhs.Description;
}
///
/// ID
///
public long ID { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 说明
///
public string Description { get; set; }
///
/// 精度评估
///
public SimulationPrintAccuracyViewModel Accuracy { get; set; }
///
/// 水泵分析
///
public SimulationPrintPumpAnalyViewModel PumpAnaly { get; set; }
///
/// 监测分析
///
public SimulationPrintMonitorAnalyViewModel MonitorAnaly { get; set; }
///
/// 能耗分析
///
public SimulationPrintEnergyAnalyViewModel EnergyAnaly { get; set; }
///
/// 损失曲线
///
public SimulationPrintLossCurveViewModel LossCurve { get; set; }
///
/// 损失统计
///
public HydroLossStatisticsViewModel LossStatistics { get; set; }
}
}