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
| namespace HStation.WinFrmUI
| {
| /// <summary>
| ///
| /// </summary>
| public class SimulationPrintViewModel
| {
| /// <summary>
| /// 项目信息
| /// </summary>
| public SimulationPrintProjectViewModel Project { get; set; }
|
| /// <summary>
| /// 水泵列表
| /// </summary>
| public List<SimulationPrintPumpViewModel> PumpList { get; set; }
|
| /// <summary>
| /// 工况列表
| /// </summary>
| public List<SimulationPrintWorkingViewModel> WorkingList { get; set; }
|
| /// <summary>
| /// 方案
| /// </summary>
| public SimulationPrintSchemeViewModel Scheme { get; set; }
|
|
| }
| }
|
|