duheng
2024-12-24 ef716332fef142a02843b5a99e8e3e92ab165738
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
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; }
 
 
 
 
 
    }
}