zhangyk-c
2024-07-16 e3cf9cc38f6415ceffc4e8e1f733a68472a46f35
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
namespace HStation.Model
{
    /// <summary>
    /// 模型信息
    /// </summary>
    public class RevitModel
    {
        /// <summary>
        /// 
        /// </summary>
        public RevitModel() { }
 
        /// <summary>
        /// 
        /// </summary>
        public RevitModel(RevitModel rhs)
        {
            this.Name = rhs.Name;
            this.Description = rhs.Description;
 
            this.Junctions = new List<RevitJunction>();
            this.Reservoirs = new List<RevitReservoir>();
            this.Tanks = new List<RevitTank>();
            this.Emitters = new List<RevitEmitter>();
 
            this.Pipes = new List<RevitPipe>();
            this.Pumps = new List<RevitPump>();
            this.Valves = new List<RevitValve>();
 
            this.Decorators = new List<RevitDecorator>();
        }
 
 
        /// <summary>
        /// 名称
        /// </summary>    
        public string Name { get; set; }
 
        /// <summary>
        /// 说明
        /// </summary>    
        public string Description { get; set; }
 
 
        /// <summary>
        /// 交点列表
        /// </summary>
        public List<RevitJunction> Junctions { get; set; }
 
        /// <summary>
        /// 水库列表
        /// </summary>
        public List<RevitReservoir> Reservoirs { get; set; }
 
        /// <summary>
        /// 水池列表
        /// </summary>
        public List<RevitTank> Tanks { get; set; }
 
        /// <summary>
        /// 扩散器列表
        /// </summary>
        public List<RevitEmitter> Emitters { get; set; }
 
 
        /// <summary>
        /// 管道列表
        /// </summary>
        public List<RevitPipe> Pipes { get; set; }
 
        /// <summary>
        /// 水泵列表
        /// </summary>
        public List<RevitPump> Pumps { get; set; }
 
        /// <summary>
        /// 阀门列表
        /// </summary>
        public List<RevitValve> Valves { get; set; }
 
 
        /// <summary>
        /// 装饰列表
        /// </summary>
        public List<RevitDecorator> Decorators { get; set; }
 
 
 
    }
}