ningshuxia
2025-03-28 94ebf14787ea1c67b6a6139a2b19e3693b809625
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
using Yw.DiagramFile;
 
namespace HStation.ReportFile
{
    /// <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; }
 
        /// <summary>
        /// 泵曲线信息
        /// </summary>
        public PumpChartViewModel PumpChart { get; set; }
    }
}