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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
using System;
 
namespace Yw.Model
{
    /// <summary>
    /// 
    /// </summary>
    public class EtaBasicRealRecord
    {
        /// <summary>
        /// 
        /// </summary>
        public EtaBasicRealRecord() { }
 
        /// <summary>
        /// 
        /// </summary>
        public EtaBasicRealRecord(EtaBasicRealRecord rhs)
        {
            this.ID = rhs.ID;
            this.Station = rhs.Station;
            this.DataTime = rhs.DataTime;
            this.Duration = rhs.Duration;
            this.Qa = rhs.Qa;
            this.Ha = rhs.Ha;
            this.Pa = rhs.Pa;
            this.Ea = rhs.Ea;
            this.WPa = rhs.WPa;
            this.UWPa = rhs.UWPa;
        }
 
        /// <summary>
        /// 
        /// </summary>
        public void Reset(EtaBasicRealRecord rhs)
        {
            this.ID = rhs.ID;
            this.Station = rhs.Station;
            this.DataTime = rhs.DataTime;
            this.Duration = rhs.Duration;
            this.Qa = rhs.Qa;
            this.Ha = rhs.Ha;
            this.Pa = rhs.Pa;
            this.Ea = rhs.Ea;
            this.WPa = rhs.WPa;
            this.UWPa = rhs.UWPa;
        }
 
        /// <summary>
        /// 标识
        /// </summary>
        public long ID { get; set; }
 
        /// <summary>
        /// 泵站
        /// </summary>
        public int Station { get; set; }
 
        /// <summary>
        /// 数据时间
        /// </summary>    
        public DateTime DataTime { get; set; }
 
        /// <summary>
        /// 间隔
        /// </summary>    
        public int Duration { get; set; }
 
        /// <summary>
        /// 分析瞬时流量
        /// </summary>    
        public double? Qa { get; set; }
 
        /// <summary>
        /// 分析扬程
        /// </summary>    
        public double? Ha { get; set; }
 
        /// <summary>
        /// 分析功率
        /// </summary>    
        public double? Pa { get; set; }
 
        /// <summary>
        /// 分析效率
        /// </summary>    
        public double? Ea { get; set; }
 
        /// <summary>
        /// 分析千吨能耗
        /// </summary>    
        public double? WPa { get; set; }
 
        /// <summary>
        /// 分析单位能耗
        /// </summary>    
        public double? UWPa { get; set; }
 
 
    }
}