Shuxia Ning
2024-12-23 630b88ea44380933602ae73b725b3772fc105c35
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
41
42
43
44
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HStation.ReportFile
{
    /// <summary>
    ///
    /// </summary>
    public class SimulationReportWorkingItemViewModel
    {
        /// <summary>
        /// 名称
        /// </summary>
        public string Name { get; set; }
 
        /// <summary>
        /// 能耗分析图片路径
        /// </summary>
        public string EnergyAnalyImagePath { get; set; }
 
        /// <summary>
        /// 损失曲线图片路径
        /// </summary>
        public string LossCurveImagePath { get; set; }
 
        /// <summary>
        /// 能量输入图片路径
        /// </summary>
        public string EnergyInputImagePath { get; set; }
 
        /// <summary>
        /// 能量损失图片路径
        /// </summary>
        public string EnergyLossImagePath { get; set; }
 
        /// <summary>
        /// 能量统计图片路径
        /// </summary>
        public string EnergyStatisticsImagePath { get; set; }
    }
}