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/02-node/RevitReservoir.cs |   30 +++++-------------------------
 1 files changed, 5 insertions(+), 25 deletions(-)

diff --git a/Service/HStation.Service.Revit.Core/02-parter/02-node/RevitReservoir.cs b/Service/HStation.Service.Revit.Core/02-parter/02-node/RevitReservoir.cs
index 0a9986f..c7addad 100644
--- a/Service/HStation.Service.Revit.Core/02-parter/02-node/RevitReservoir.cs
+++ b/Service/HStation.Service.Revit.Core/02-parter/02-node/RevitReservoir.cs
@@ -16,24 +16,16 @@
         public RevitReservoir(RevitReservoir rhs) : base(rhs)
         {
             this.ModelType = rhs.ModelType;
-            this.Elev = rhs.Elev;
             this.Head = rhs.Head;
             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();
+            this.BoundingBox = rhs.BoundingBox;
         }
 
         /// <summary>
         /// 鍨嬪彿
         /// </summary>
         public string ModelType { get; set; }
-
-        /// <summary>
-        /// 鏍囬珮
-        /// </summary>
-        public double Elev { get; set; }
 
         /// <summary>
         /// 鎬绘按澶�
@@ -46,26 +38,14 @@
         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; }
 
-
+        /// <summary>
+        /// 浣嶇疆
+        /// </summary>
+        public RevitBoundingBox BoundingBox { get; set; }
 
 
     }

--
Gitblit v1.9.3