1
lixiaojun
2024-07-30 0832ac460e994d1f852f14e91b09b380ebf66a52
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
namespace HStation.Model
{
    /// <summary>
    /// 节点
    /// </summary>
    public class RevitJunction : RevitParter, IRevitJunction
    {
        /// <summary>
        /// 
        /// </summary>
        public RevitJunction() { }
 
        /// <summary>
        /// 
        /// </summary>
        public RevitJunction(RevitJunction rhs) : base(rhs)
        {
            this.ModelType = rhs.ModelType;
            this.Quality = rhs.Quality;
            this.Coefficient = rhs.Coefficient;
            this.Elev = rhs.Elev;
            this.Demand = rhs.Demand;
            this.DemandPattern = rhs.DemandPattern;
            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 Quality { get; set; }
 
        /// <summary>
        /// 喷射系数
        /// </summary>
        [JsonProperty("喷射系数", NullValueHandling = NullValueHandling.Ignore)]
        public double Coefficient { get; set; }
 
        /// <summary>
        /// 标高
        /// </summary>
        [JsonProperty("标高", NullValueHandling = NullValueHandling.Ignore)]
        public double Elev { get; set; }
 
        /// <summary>
        /// 需水量
        /// </summary>
        [JsonProperty("需水量", NullValueHandling = NullValueHandling.Ignore)]
        public double? Demand { get; set; }
 
        /// <summary>
        /// 需水模式
        /// </summary>
        [JsonProperty("需水模式", NullValueHandling = NullValueHandling.Ignore)]
        public string DemandPattern { 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; }
 
    }
}