Shuxia Ning
2025-01-14 be3e4f6d2dd0529b87204169bce6df55c37a4199
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
namespace HStation.WinFrmUI
{
    /// <summary>
    /// 模拟工况报告ViewModel
    /// </summary>
    public class SimulationWorkingReportViewModel
    {
        /// <summary>
        /// 报告类型
        /// </summary>
        public string ReportType { get; set; }
 
        /// <summary>
        /// 基本信息
        /// </summary>
        public SimulationReportInfoItemViewModel Info { get; set; }
 
        /// <summary>
        /// 水泵列表
        /// </summary>
        public List<SimulationReportPumpItemViewModel> Pumps { get; set; }
 
        /// <summary>
        /// 工况信息
        /// </summary>
        public SimulationReportWorkingItemViewModel Working { get; set; }
 
 
 
 
 
    }
}