duheng
2025-02-17 26f45822a2a84af81e20ca543da98d3b822c5afd
Service/HStation.Service.Revit.Core/02-parter/03-link/01-pipe/RevitPipe.cs
@@ -15,6 +15,7 @@
        /// </summary>
        public RevitPipe(RevitPipe rhs) : base(rhs)
        {
            this.Material = rhs.Material;
            this.Diameter = rhs.Diameter;
            this.Length = rhs.Length;
            this.Roughness = rhs.Roughness;
@@ -22,12 +23,17 @@
        }
        /// <summary>
        /// 直径(内径) mm
        /// 材质
        /// </summary>
        public string Material { get; set; }
        /// <summary>
        /// 直径 (mm)
        /// </summary>
        public double Diameter { get; set; }
        /// <summary>
        /// 长度
        /// 长度 (m)
        /// </summary>
        public double Length { get; set; }
@@ -41,5 +47,7 @@
        /// </summary>
        public double MinorLoss { get; set; }
    }
}