namespace HStation.WinFrmUI
|
{
|
/// <summary>
|
/// 损失统计项视图
|
/// </summary>
|
public class SimulationPrintLossStatisticsItemViewModel
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public SimulationPrintLossStatisticsItemViewModel() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public SimulationPrintLossStatisticsItemViewModel(Yw.EPAnet.EnergyPoint rhs)
|
{
|
this.EnergyType = rhs.EnergyType;
|
this.EnergyCode = rhs.Id;
|
this.EnergyValue = EnergyValue;
|
}
|
|
/// <summary>
|
/// 能量类型
|
/// </summary>
|
public Yw.EPAnet.eEnergyType EnergyType { get; set; }
|
|
/// <summary>
|
/// 能量编码
|
/// </summary>
|
public string EnergyCode { get; set; }
|
|
/// <summary>
|
/// 能量值
|
/// </summary>
|
public double EnergyValue { get; set; }
|
|
|
}
|
}
|