Shuxia Ning
2024-12-17 907a1579fecf2c160852cf99b3ea77c08eb481cc
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
namespace Yw.WinFrmUI
{
    /// <summary>
    /// 
    /// </summary>
    public class HydroMatchingViewModel
    {
        /// <summary>
        /// 水池
        /// </summary>
        public List<HydroTankMatchingViewModel> Tanks { get; set; }
 
        /// <summary>
        /// 闷头
        /// </summary>
        public List<HydroBluntheadMatchingViewModel> Bluntheads { get; set; }
 
        /// <summary>
        /// 弯头
        /// </summary>
        public List<HydroElbowMatchingViewModel> Elbows { get; set; }
 
        /// <summary>
        /// 三通
        /// </summary>
        public List<HydroThreelinkMatchingViewModel> Threelinks { get; set; }
 
        /// <summary>
        /// 四通
        /// </summary>
        public List<HydroFourlinkMatchingViewModel> Fourlinks { get; set; }
 
        /// <summary>
        /// 喷嘴
        /// </summary>
        public List<HydroNozzleMatchingViewModel> Nozzles { get; set; }
 
        /// <summary>
        /// 消火栓
        /// </summary>
        public List<HydroHydrantMatchingViewModel> Hydrants { get; set; }
 
        /// <summary>
        /// 冷却塔
        /// </summary>
        public List<HydroCoolingMatchingViewModel> Coolings { get; set; }
 
        /// <summary>
        /// 水表
        /// </summary>
        public List<HydroMeterMatchingViewModel> Meters { get; set; }
 
        /// <summary>
        /// 流量计
        /// </summary>
        public List<HydroFlowmeterMatchingViewModel> Flowmeters { get; set; }
 
        /// <summary>
        /// 压力表
        /// </summary>
        public List<HydroPressmeterMatchingViewModel> Pressmeters { get; set; }
 
        /// <summary>
        /// 管道
        /// </summary>
        public List<HydroPipeMatchingViewModel> Pipes { get; set; }
 
        /// <summary>
        /// 过渡件
        /// </summary>
        public List<HydroTranslationMatchingViewModel> Translations { get; set; }
 
        /// <summary>
        /// 水泵
        /// </summary>
        public List<HydroPumpMatchingViewModel> Pumps { get; set; }
 
        /// <summary>
        /// 阀门
        /// </summary>
        public List<HydroValveMatchingViewModel> Valves { get; set; }
 
        /// <summary>
        /// 换热器
        /// </summary>
        public List<HydroExchangerMatchingViewModel> Exchangers { get; set; }
 
        /// <summary>
        /// 压缩机
        /// </summary>
        public List<HydroCompressorMatchingViewModel> Compressors { get; set; }
 
 
 
 
 
    }
}