duheng
2024-10-24 2af3ae119846a6b12cabdc28fb67329e122e39b5
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() : base() { }
 
        /// <summary>
        /// 
        /// </summary>
        public RevitFlowmeter(RevitFlowmeter rhs) : base(rhs)
        {
            this.CurrentFlow = rhs.CurrentFlow;
        }
 
        /// <summary>
        /// 当前流量
        /// </summary>
        public double? CurrentFlow { get; set; }
 
 
    }
}