Shuxia Ning
2024-11-06 adf8dc1c7cae1b12f486dcdb3d7daf4a5a59ec52
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
namespace IStation.Model
{
    public class PumpSignalRecord
    {
        public PumpSignalRecord() { }
        public PumpSignalRecord(Model.PumpSignalRecord rhs)
        {
            this.EnginePumpID = rhs.EnginePumpID;
            this.RunStatus = rhs.RunStatus;
            this.Rpm = rhs.Rpm;
            this.Frequency = rhs.Frequency;
            this.FlowRate = rhs.FlowRate;
            this.TotalFlow = rhs.TotalFlow;
            this.InletPressure = rhs.InletPressure;
            this.OutletPressure = rhs.OutletPressure;
            this.InstantaneousPower = rhs.InstantaneousPower;
            this.TotalActiveEnergy = rhs.TotalActiveEnergy;
        }
 
        /// <summary>
        /// 机泵标识
        /// </summary>
        public long EnginePumpID { get; set; }
 
        /// <summary>
        /// 运行状态
        /// </summary>
        public int? RunStatus { get; set; }
 
        /// <summary>
        /// 转速
        /// </summary>
        public double? Rpm { get; set; }
 
        /// <summary>
        /// 频率
        /// </summary>
        public double? Frequency { get; set; }
 
        /// <summary>
        /// 瞬时流量
        /// </summary>
        public double? FlowRate { get; set; }
 
        /// <summary>
        /// 累计流量
        /// </summary>
        public double? TotalFlow { get; set; }
 
        /// <summary>
        /// 进口压力
        /// </summary>
        public double? InletPressure { get; set; }
 
        /// <summary>
        /// 出口压力
        /// </summary>
        public double? OutletPressure { get; set; }
 
        /// <summary>
        /// 瞬时功率
        /// </summary> 
        public double? InstantaneousPower { get; set; }
 
        /// <summary>
        /// 有功电能
        /// </summary> 
        public double? TotalActiveEnergy { get; set; }
 
    }
}