zhangyk-c
2024-07-16 e3cf9cc38f6415ceffc4e8e1f733a68472a46f35
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
namespace HStation.Revit
{
    /// <summary>
    /// 管道状态
    /// </summary>
    public class PipeStatus
    {
        /// <summary>
        /// 开启
        /// </summary>
        public const string Open = "OPEN";
 
        /// <summary>
        /// 关闭
        /// </summary>
        public const string Close = "CLOSE";
 
        /// <summary>
        /// CV 意味着管道包含了限制流向的止回阀
        /// </summary>
        public const string CV = "CV";
    }
}