Shuxia Ning
2025-01-16 f0cebbd2deb4dbf9e89dac4768415de62fd1fc20
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
namespace HStation.Model
{
    /// <summary>
    /// 水库
    /// </summary>
    public class RevitReservoir : RevitSource
    {
        /// <summary>
        /// 
        /// </summary>
        public RevitReservoir() { }
 
        /// <summary>
        /// 
        /// </summary>
        public RevitReservoir(RevitReservoir rhs) : base(rhs)
        {
            this.PoolElev = rhs.PoolElev;
            this.Head = rhs.Head;
            this.HeadPattern = rhs.HeadPattern;
        }
 
        /// <summary>
        /// 池底标高 (m)
        /// </summary>
        public double? PoolElev { get; set; }
 
        /// <summary>
        /// 总水头 (m)
        /// </summary>
        public double Head { get; set; }
 
        /// <summary>
        /// 水头模式
        /// </summary>
        public string HeadPattern { get; set; }
 
 
    }
}