lixiaojun
2024-11-07 31cca463443f7bc8b6b1bd02889844b864d93e11
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
namespace HStation.Model
{
    /// <summary>
    /// 流量计
    /// </summary>
    public class RevitFlowmeter : RevitJunction
    {
        /// <summary>
        /// 
        /// </summary>
        public RevitFlowmeter() { }
 
        /// <summary>
        /// 
        /// </summary>
        public RevitFlowmeter(RevitFlowmeter rhs) : base(rhs)
        {
            this.CurrentFlow = rhs.CurrentFlow;
        }
 
        /// <summary>
        /// 当前流量(m³/h)
        /// </summary>
        public double? CurrentFlow { get; set; }
 
 
    }
}