Shuxia Ning
2024-10-15 8b3c150ccc930e334f787f85db75784a54f08b0f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace HStation.Revit
{
    /// <summary>
    /// 水泵状态
    /// </summary>
    public class PumpStatus
    {
        /// <summary>
        /// 开启
        /// </summary>
        public const string Open = "Open";
 
        /// <summary>
        /// 关闭
        /// </summary>
        public const string Closed = "Closed";
    }
}