From 49bca0faca96aa1149ff6c6194102dfe3de8db87 Mon Sep 17 00:00:00 2001
From: lixiaojun <1287241240@qq.com>
Date: 星期一, 15 七月 2024 10:13:53 +0800
Subject: [PATCH] revit model修改

---
 Service/HStation.Service.Revit.Core/02-parter/03-linker/RevitPump.cs |   14 ++++++++++----
 1 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/Service/HStation.Service.Revit.Core/02-parter/03-linker/RevitPump.cs b/Service/HStation.Service.Revit.Core/02-parter/03-linker/RevitPump.cs
index f852ecb..f9d4086 100644
--- a/Service/HStation.Service.Revit.Core/02-parter/03-linker/RevitPump.cs
+++ b/Service/HStation.Service.Revit.Core/02-parter/03-linker/RevitPump.cs
@@ -16,13 +16,14 @@
         public RevitPump(RevitPump rhs) : base(rhs)
         {
             this.ModelType = rhs.ModelType;
-            this.StartNode = rhs.StartNode;
-            this.EndNode = rhs.EndNode;
+            this.StartCode = rhs.StartCode;
+            this.EndCode = rhs.EndCode;
             this.Power = rhs.Power;
             this.Head = rhs.Head;
             this.Speed = rhs.Speed;
             this.Pattern = rhs.Pattern;
             this.PropValueList = rhs.PropValueList?.Select(x => new RevitPropValue(x)).ToList();
+            this.BoundingBox = rhs.BoundingBox;
         }
 
         /// <summary>
@@ -33,12 +34,12 @@
         /// <summary>
         /// 涓婃父鑺傜偣
         /// </summary>
-        public string StartNode { get; set; }
+        public string StartCode { get; set; }
 
         /// <summary>
         /// 涓嬫父鑺傜偣
         /// </summary>
-        public string EndNode { get; set; }
+        public string EndCode { get; set; }
 
         /// <summary>
         ///  鎭掑畾鑳介噺姘存车鐨勫姛鐜�
@@ -65,6 +66,11 @@
         /// </summary>
         public List<RevitPropValue> PropValueList { get; set; }
 
+        /// <summary>
+        /// 浣嶇疆
+        /// </summary>
+        public RevitBoundingBox BoundingBox { get; set; }
+
 
     }
 }

--
Gitblit v1.9.3