From 083c4e47c7a59025f3348bd093693c6b3febb014 Mon Sep 17 00:00:00 2001 From: duheng <2784771470@qq.com> Date: 星期三, 16 十月 2024 10:03:31 +0800 Subject: [PATCH] Merge branch 'master' of http://47.103.154.90:83/r/HStation/XHS.V1.0 --- Service/HStation.Service.Revit.Core/02-parter/03-link/01-pipe/RevitPipe.cs | 18 ++++++++++-------- 1 files changed, 10 insertions(+), 8 deletions(-) diff --git a/Service/HStation.Service.Revit.Core/02-parter/03-link/01-pipe/RevitPipe.cs b/Service/HStation.Service.Revit.Core/02-parter/03-link/01-pipe/RevitPipe.cs index f3164c9..18ca229 100644 --- a/Service/HStation.Service.Revit.Core/02-parter/03-link/01-pipe/RevitPipe.cs +++ b/Service/HStation.Service.Revit.Core/02-parter/03-link/01-pipe/RevitPipe.cs @@ -8,24 +8,19 @@ /// <summary> /// /// </summary> - public RevitPipe() { } + public RevitPipe() : base() { } /// <summary> /// /// </summary> public RevitPipe(RevitPipe rhs) : base(rhs) { - this.Diameter = rhs.Diameter; this.Material = rhs.Material; + this.Diameter = rhs.Diameter; this.Length = rhs.Length; this.Roughness = rhs.Roughness; this.MinorLoss = rhs.MinorLoss; } - - /// <summary> - /// 鐩村緞(鍐呭緞) mm - /// </summary> - public double Diameter { get; set; } /// <summary> /// 鏉愯川 @@ -33,7 +28,12 @@ public string Material { get; set; } /// <summary> - /// 闀垮害 + /// 鐩村緞 (mm) + /// </summary> + public double Diameter { get; set; } + + /// <summary> + /// 闀垮害 (m) /// </summary> public double Length { get; set; } @@ -47,5 +47,7 @@ /// </summary> public double MinorLoss { get; set; } + + } } -- Gitblit v1.9.3