lixiaojun
2025-02-17 f4a5f0c3fc24136294eec0153ec0605529243388
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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; }
 
 
    }
}