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
using System.Collections.Generic;
using System.Linq;
namespace Yw.Model
{
    /// <summary>
    /// 能效运行(多)汇总内容
    /// </summary>
    public class EtaMultiRunSummaryContent
    {
        /// <summary>
        /// 
        /// </summary>
        public EtaMultiRunSummaryContent() { }
 
        /// <summary>
        /// 
        /// </summary>
        public EtaMultiRunSummaryContent(EtaMultiRunSummaryContent rhs)
        {
            this.ObjectType = rhs.ObjectType;
            this.ObjectID = rhs.ObjectID;
            this.RunningCount = rhs.RunningCount;
            this.RunningFlag = rhs.RunningFlag?.ToList();
            this.Qavg = rhs.Qavg;
            this.Havg = rhs.Havg;
            this.Pavg = rhs.Pavg;
            this.Eavg = rhs.Eavg;
            this.Tsum = rhs.Tsum;
        }
 
 
        /// <summary>
        /// 数据类型
        /// </summary>    
        public string ObjectType { get; set; }
 
        /// <summary>
        /// 数据id
        /// </summary>    
        public long ObjectID { get; set; }
 
        /// <summary>
        /// 运行数量
        /// </summary>    
        public int RunningCount { get; set; }
 
        /// <summary>
        /// 运行标志
        /// </summary>    
        public List<int> RunningFlag { get; set; }
 
        /// <summary>
        /// 瞬时流量
        /// </summary>    
        public double Qavg { get; set; }
 
        /// <summary>
        /// 功率
        /// </summary>    
        public double Pavg { get; set; }
 
        /// <summary>
        /// 扬程
        /// </summary>    
        public double Havg { get; set; }
 
        /// <summary>
        /// 效率
        /// </summary>    
        public double Eavg { get; set; }
 
        /// <summary>
        /// 时间
        /// </summary>    
        public int Tsum { get; set; }
 
 
 
 
 
    }
}