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/RevitValve.cs | 14 ++++++++++---- 1 files changed, 10 insertions(+), 4 deletions(-) diff --git a/Service/HStation.Service.Revit.Core/02-parter/03-linker/RevitValve.cs b/Service/HStation.Service.Revit.Core/02-parter/03-linker/RevitValve.cs index 285cb3b..93fb255 100644 --- a/Service/HStation.Service.Revit.Core/02-parter/03-linker/RevitValve.cs +++ b/Service/HStation.Service.Revit.Core/02-parter/03-linker/RevitValve.cs @@ -16,13 +16,14 @@ public RevitValve(RevitValve rhs) : base(rhs) { this.ModelType = rhs.ModelType; - this.StartNode = rhs.StartNode; - this.EndNode = rhs.EndNode; + this.StartCode = rhs.StartCode; + this.EndCode = rhs.EndCode; this.Diameter = rhs.Diameter; this.MinorLoss = rhs.MinorLoss; this.ValveType = rhs.ValveType; this.ValveSetting = rhs.ValveSetting; 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,5 +66,10 @@ /// </summary> public List<RevitPropValue> PropValueList { get; set; } + /// <summary> + /// 浣嶇疆 + /// </summary> + public RevitBoundingBox BoundingBox { get; set; } + } } -- Gitblit v1.9.3