lixiaojun
2024-07-29 72d1856d8097fa55e54e1ed4cc1ae06912f3e57e
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
namespace HStation.Model
{
    /// <summary>
    /// 水池
    /// </summary>
    public class RevitTank : RevitParter, IRevitTank
    {
        /// <summary>
        /// 
        /// </summary>
        public RevitTank() { }
 
        /// <summary>
        /// 
        /// </summary>
        public RevitTank(RevitTank rhs) : base(rhs)
        {
            this.ModelType = rhs.ModelType;
            this.Elev = rhs.Elev;
            this.InitLevel = rhs.InitLevel;
            this.MinLevel = rhs.MinLevel;
            this.MaxLevel = rhs.MaxLevel;
            this.Diameter = rhs.Diameter;
            this.MinVol = rhs.MinVol;
            this.VolCurve = rhs.VolCurve;
            this.PropValueList = rhs.PropValueList;
            this.BoundingBox = rhs.BoundingBox;
        }
 
        /// <summary>
        /// 型号
        /// </summary>
        [JsonProperty("型号信息", NullValueHandling = NullValueHandling.Ignore)]
        public string ModelType { get; set; }
 
        /// <summary>
        /// 池底标高
        /// </summary>
        [JsonProperty("标高", NullValueHandling = NullValueHandling.Ignore)]
        public double Elev { get; set; }
 
        /// <summary>
        /// 初始水位
        /// </summary>
        [JsonProperty("初始水位", NullValueHandling = NullValueHandling.Ignore)]
        public double InitLevel { get; set; }
 
        /// <summary>
        /// 最低水位
        /// </summary>
        [JsonProperty("最低水位", NullValueHandling = NullValueHandling.Ignore)]
        public double MinLevel { get; set; }
 
        /// <summary>
        /// 最高水位
        /// </summary>
        [JsonProperty("最高水位", NullValueHandling = NullValueHandling.Ignore)]
        public double MaxLevel { get; set; }
 
        /// <summary>
        /// 直径
        /// </summary>
        [JsonProperty("直径", NullValueHandling = NullValueHandling.Ignore)]
        public double Diameter { get; set; }
 
        /// <summary>
        /// 最小容积
        /// </summary>
        [JsonProperty("最小容积", NullValueHandling = NullValueHandling.Ignore)]
        public double MinVol { get; set; }
 
        /// <summary>
        /// 容积曲线
        /// </summary>
        [JsonProperty("容积曲线", NullValueHandling = NullValueHandling.Ignore)]
        public string VolCurve { get; set; }
 
        /// <summary>
        /// 属性值列表
        /// </summary>
        [JsonProperty("属性值列表", NullValueHandling = NullValueHandling.Ignore)]
        public Dictionary<string, object> PropValueList { get; set; }
 
        /// <summary>
        /// 位置
        /// </summary>
        [JsonProperty("位置", NullValueHandling = NullValueHandling.Ignore)]
        public RevitBoundingBox BoundingBox { get; set; }
 
    }
}