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
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; }
    }
}