zhangyk-c
2024-07-22 794cfd44a319ae5f0d8a53aec44fd0b98f7a203b
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
using HStation.RevitDev.Model.AttributeClass;
 
namespace HStation.Model
{
    /// <summary>
    /// 阀门
    /// </summary>
    public interface IRevitValve : IRevitNode, IRevitLinker
    {
        /// <summary>
        /// 直径
        /// </summary>
        [Parameter("直径")]
        double Diameter { get; set; }
 
        /// <summary>
        /// 局阻系数
        /// </summary>
        [Parameter("局阻系数")]
        double MinorLoss { get; set; }
 
        /// <summary>
        /// 阀门类型
        /// </summary>
        [Parameter("阀门类型")]
        string ValveType { get; set; }
 
        /// <summary>
        /// 阀门设置
        /// </summary>
        [Parameter("阀门设置")]
        string ValveSetting { get; set; }
    }
}