lixiaojun
2024-07-12 315fce49a23eef331fb70e64d24cbf9d6c2d4fca
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
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.Elev = rhs.Elev;
            this.Demand = rhs.Demand;
            this.Pattern = rhs.Pattern;
            this.X = rhs.X;
            this.Y = rhs.Y;
            this.Z = rhs.Z;
            this.PropValueList = rhs.PropValueList?.Select(x => new RevitPropValue(x)).ToList();
        }
 
 
        /// <summary>
        /// 型号
        /// </summary>
        public string ModelType { get; set; }
 
        /// <summary>
        /// 标高
        /// </summary>
        public double Elev { get; set; }
 
        /// <summary>
        /// 需水量
        /// </summary>
        public double Demand { get; set; }
 
        /// <summary>
        /// 需水模式
        /// </summary>
        public string Pattern { get; set; }
 
        /// <summary>
        /// X坐标
        /// </summary>
        public double X { get; set; }
 
        /// <summary>
        /// Y坐标
        /// </summary>
        public double Y { get; set; }
 
        /// <summary>
        /// Z坐标
        /// </summary>
        public double Z { get; set; }
 
        /// <summary>
        /// 属性值列表
        /// </summary>
        public List<RevitPropValue> PropValueList { get; set; }
 
    }
}