lixiaojun
2023-03-21 c6c912c9a0b1235805dea4fbb471e26a7f13a47d
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace IStation.Application
{
    /// <summary>
    /// 能效(多)实时正常内容记录
    /// </summary>
    public class EtaMultiRealRecordNormalContentDto 
    {
        /// <summary>
        /// 
        /// </summary>
        public EtaMultiRealRecordNormalContentDto() { }
 
        /// <summary>
        /// 
        /// </summary>
        public EtaMultiRealRecordNormalContentDto(Model.EtaMultiRealRecordPure rhs)
        {
            this.DataTime = rhs.DataTime;
            this.Qa = rhs.Qa.HasValue ? Math.Round(rhs.Qa.Value,1) : 0;
            this.Ha = rhs.Ha.HasValue ? Math.Round(rhs.Ha.Value, 2) : 0;
            this.Ea= rhs.Ea.HasValue ? Math.Round(rhs.Ea.Value, 1) : 0;
            this.Pa = rhs.Pa.HasValue ? Math.Round(rhs.Pa.Value, 1) : 0;
            this.WPa = rhs.WPa.HasValue ? Math.Round(rhs.WPa.Value, 1) : 0;
            this.UWPa = rhs.UWPa.HasValue ? Math.Round(rhs.UWPa.Value, 1) : 0;
        }
 
        /// <summary>
        /// 数据时间
        /// </summary>
        public DateTime DataTime { 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; }
    }
}