qin
2025-03-08 cb461a40efd3adeafadef8cb0bd2e2cb12f18d9b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using HStation.RevitDev.Model.AttributeClass;
namespace HStation.Model
{
    /// <summary>
    /// 管道
    /// </summary>
    public interface IRevitPipe : IRevitLinker
    {
        /// <summary>
        /// 直径
        /// </summary>
        [Parameter("直径")]
        double Diameter { get; set; }
 
        /// <summary>
        /// 长度
        /// </summary>
        [Parameter("长度")]
        double Length { get; set; }
 
        /// <summary>
        /// 粗糙系数
        /// </summary>
        [Parameter("粗糙系数")]
        double Roughness { get; set; }
 
        /// <summary>
        /// 局阻系数
        /// </summary>
        [Parameter("局阻系数")]
        double MinorLoss { get; set; }
 
        /// <summary>
        /// 管道状态
        /// </summary>
        [Parameter("管道状态")]
        string PipeStatus { get; set; }
    }
}