From 0832ac460e994d1f852f14e91b09b380ebf66a52 Mon Sep 17 00:00:00 2001 From: lixiaojun <1287241240@qq.com> Date: 星期二, 30 七月 2024 14:04:12 +0800 Subject: [PATCH] 1 --- Service/HStation.Service.Revit.Core/02-parter/02-node/RevitJunction.cs | 20 +++++++++++++++++--- 1 files changed, 17 insertions(+), 3 deletions(-) diff --git a/Service/HStation.Service.Revit.Core/02-parter/02-node/RevitJunction.cs b/Service/HStation.Service.Revit.Core/02-parter/02-node/RevitJunction.cs index 2745534..8f739b5 100644 --- a/Service/HStation.Service.Revit.Core/02-parter/02-node/RevitJunction.cs +++ b/Service/HStation.Service.Revit.Core/02-parter/02-node/RevitJunction.cs @@ -16,19 +16,33 @@ public RevitJunction(RevitJunction rhs) : base(rhs) { this.ModelType = rhs.ModelType; + this.Quality = rhs.Quality; + this.Coefficient = rhs.Coefficient; this.Elev = rhs.Elev; this.Demand = rhs.Demand; - this.Pattern = rhs.Pattern; + this.DemandPattern = rhs.DemandPattern; this.PropValueList = rhs.PropValueList; this.BoundingBox = rhs.BoundingBox; } /// <summary> - /// 鍨嬪彿 + /// 鍨嬪彿淇℃伅 /// </summary> [JsonProperty("鍨嬪彿淇℃伅", NullValueHandling = NullValueHandling.Ignore)] public string ModelType { get; set; } + + /// <summary> + /// 鍒濆姘磋川 + /// </summary> + [JsonProperty("鍒濆姘磋川", NullValueHandling = NullValueHandling.Ignore)] + public double Quality { get; set; } + + /// <summary> + /// 鍠峰皠绯绘暟 + /// </summary> + [JsonProperty("鍠峰皠绯绘暟", NullValueHandling = NullValueHandling.Ignore)] + public double Coefficient { get; set; } /// <summary> /// 鏍囬珮 @@ -46,7 +60,7 @@ /// 闇�姘存ā寮� /// </summary> [JsonProperty("闇�姘存ā寮�", NullValueHandling = NullValueHandling.Ignore)] - public string Pattern { get; set; } + public string DemandPattern { get; set; } /// <summary> /// 灞炴�у�煎垪琛� -- Gitblit v1.9.3