From bc8d900f5ca26216dae0e1be243ab6237790873b Mon Sep 17 00:00:00 2001 From: lixiaojun <1287241240@qq.com> Date: 星期一, 21 十月 2024 10:56:42 +0800 Subject: [PATCH] 部分调试升级 --- Service/HStation.Service.Revit.Core/02-parter/03-link/03-valve/RevitValve.cs | 12 +++++++++++- 1 files changed, 11 insertions(+), 1 deletions(-) diff --git a/Service/HStation.Service.Revit.Core/02-parter/03-link/03-valve/RevitValve.cs b/Service/HStation.Service.Revit.Core/02-parter/03-link/03-valve/RevitValve.cs index b6ae81b..aae1bcc 100644 --- a/Service/HStation.Service.Revit.Core/02-parter/03-link/03-valve/RevitValve.cs +++ b/Service/HStation.Service.Revit.Core/02-parter/03-link/03-valve/RevitValve.cs @@ -15,11 +15,18 @@ /// </summary> public RevitValve(RevitValve rhs) : base(rhs) { + this.Material = rhs.Material; this.Diameter = rhs.Diameter; this.MinorLoss = rhs.MinorLoss; this.ValveType = rhs.ValveType; this.ValveSetting = rhs.ValveSetting; + this.OpeningDegree = rhs.OpeningDegree; } + + /// <summary> + /// 鏉愯川 + /// </summary> + public string Material { get; set; } /// <summary> /// 闃�闂ㄧ洿寰� (mm) @@ -41,7 +48,10 @@ /// </summary> public string ValveSetting { get; set; } - + /// <summary> + /// 闃�闂ㄥ紑搴� + /// </summary> + public double OpeningDegree { get; set; } } -- Gitblit v1.9.3