lixiaojun
2024-09-24 1716b1da53462a010699c2af750afde753b44df6
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
namespace HStation.WinFrmUI
{
    public class AssetsAutoMatchingViewModel
    {
        /// <summary>
        /// 水泵列表
        /// </summary>
        public List<PumpMatchingViewModel> PumpMatchingModels { get; set; }
 
        /// <summary>
        /// 三通列表
        /// </summary>
        public List<ThreeLinkMatchingViewModel> ThreeLinkMatchingModels { get; set; }
 
        /// <summary>
        /// 四通列表
        /// </summary>
        public List<FourLinkMatchingViewModel> FourLinkMatchingModels { get; set; }
 
        /// <summary>
        /// 弯头列表
        /// </summary>
        public List<ElbowsMatchingViewModel> ElbowsMatchingModels { get; set; }
 
        /// <summary>
        /// 管道列表
        /// </summary>
        public List<PipeLineMatchingViewModel> PipeLineMatchingModels { get; set; }
 
        /// <summary>
        /// 阀门列表
        /// </summary>
        public List<ValveMatchingViewModel> ValveMatchingModels { get; set; }
    }
}