lixiaojun
2024-09-27 ddea52cb5c957705b1ed4e004de65e1a3f5ad129
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
namespace HStation.WinFrmUI
{
    /// <summary>
    /// 资产匹配ViewModel
    /// </summary>
    public class AssetsMatchingViewModel
    {
        /// <summary>
        /// 水泵列表
        /// </summary>
        public List<PumpMatchingViewModel> PumpMatchingList { get; set; }
 
        /// <summary>
        /// 阀门列表
        /// </summary>
        public List<ValveMatchingViewModel> ValveMatchingList { get; set; }
 
        /// <summary>
        /// 管道列表
        /// </summary>
        public List<PipeMatchingViewModel> PipeMatchingList { get; set; }
 
        /// <summary>
        /// 弯头列表
        /// </summary>
        public List<ElbowMatchingViewModel> ElbowMatchingList { get; set; }
 
        /// <summary>
        /// 三通列表
        /// </summary>
        public List<ThreelinkMatchingViewModel> ThreelinkMatchingList { get; set; }
 
        /// <summary>
        /// 四通列表
        /// </summary>
        public List<FourlinkMatchingViewModel> FourlinkMatchingList { get; set; }
 
 
 
 
 
 
    }
}