From abf1e3b3334ab47c38aa92405a11a6ec92b7847a Mon Sep 17 00:00:00 2001 From: lixiaojun <1287241240@qq.com> Date: 星期四, 31 十月 2024 17:18:37 +0800 Subject: [PATCH] bimface 水流 --- Service/HStation.Service.Revit.Core/01-model/RevitModel.cs | 41 ++++++++++++++++++++++++----------------- 1 files changed, 24 insertions(+), 17 deletions(-) diff --git a/Service/HStation.Service.Revit.Core/01-model/RevitModel.cs b/Service/HStation.Service.Revit.Core/01-model/RevitModel.cs index 959af69..c9fa568 100644 --- a/Service/HStation.Service.Revit.Core/01-model/RevitModel.cs +++ b/Service/HStation.Service.Revit.Core/01-model/RevitModel.cs @@ -16,8 +16,8 @@ this.Junctions = new List<RevitJunction>(); this.Nozzles = new List<RevitNozzle>(); this.Hydrants = new List<RevitHydrant>(); - this.Elbows = new List<RevitElbow>(); this.Bluntheads = new List<RevitBlunthead>(); + this.Elbows = new List<RevitElbow>(); this.Threelinks = new List<RevitThreelink>(); this.Fourlinks = new List<RevitFourlink>(); this.Meters = new List<RevitMeter>(); @@ -27,6 +27,7 @@ this.Pipes = new List<RevitPipe>(); this.Translations = new List<RevitTranslation>(); this.Exchangers = new List<RevitExchanger>(); + this.Compressors = new List<RevitCompressor>(); this.Pumps = new List<RevitPump>(); this.Valves = new List<RevitValve>(); @@ -46,8 +47,8 @@ this.Junctions = rhs.Junctions; this.Nozzles = rhs.Nozzles; this.Hydrants = rhs.Hydrants; - this.Elbows = rhs.Elbows; this.Bluntheads = rhs.Bluntheads; + this.Elbows = rhs.Elbows; this.Threelinks = rhs.Threelinks; this.Fourlinks = rhs.Fourlinks; this.Meters = rhs.Meters; @@ -56,6 +57,7 @@ this.Pipes = rhs.Pipes; this.Translations = rhs.Translations; this.Exchangers = rhs.Exchangers; + this.Compressors = rhs.Compressors; this.Pumps = rhs.Pumps; this.Valves = rhs.Valves; this.Decorators = rhs.Decorators; @@ -108,6 +110,11 @@ public List<RevitHydrant> Hydrants { get; set; } /// <summary> + /// 闂峰ご鍒楄〃 + /// </summary> + public List<RevitBlunthead> Bluntheads { get; set; } + + /// <summary> /// 寮ご鍒楄〃 /// </summary> public List<RevitElbow> Elbows { get; set; } @@ -121,11 +128,6 @@ /// 鍥涢�氬垪琛� /// </summary> public List<RevitFourlink> Fourlinks { get; set; } - - /// <summary> - /// 闂峰ご鍒楄〃 - /// </summary> - public List<RevitBlunthead> Bluntheads { get; set; } /// <summary> /// 姘磋〃 @@ -148,16 +150,6 @@ #region 绠℃ /// <summary> - /// 姘存车鍒楄〃 - /// </summary> - public List<RevitPump> Pumps { get; set; } - - /// <summary> - /// 闃�闂ㄥ垪琛� - /// </summary> - public List<RevitValve> Valves { get; set; } - - /// <summary> /// 绠¢亾鍒楄〃 /// </summary> public List<RevitPipe> Pipes { get; set; } @@ -172,6 +164,21 @@ /// </summary> public List<RevitExchanger> Exchangers { get; set; } + /// <summary> + /// 绌哄帇鏈哄垪琛� + /// </summary> + public List<RevitCompressor> Compressors { get; set; } + + /// <summary> + /// 姘存车鍒楄〃 + /// </summary> + public List<RevitPump> Pumps { get; set; } + + /// <summary> + /// 闃�闂ㄥ垪琛� + /// </summary> + public List<RevitValve> Valves { get; set; } + #endregion #region 瑁呴グ浠� -- Gitblit v1.9.3