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
using System;
using System.Collections.Generic;
using System.Linq;
 
namespace Yw.Model
{
    /// <summary>
    /// 能效组合实时记录
    /// </summary>    
    public partial class EtaMultiRealRecord : EtaBasicRealRecord, System.ICloneable
    {
        /// <summary>
        /// 
        /// </summary>
        public EtaMultiRealRecord() { }
 
        /// <summary>
        /// 
        /// </summary>
        public EtaMultiRealRecord(EtaMultiRealRecord rhs) : base(rhs)
        {
            this.RunningCount = rhs.RunningCount;
            this.RunningFlag = rhs.RunningFlag?.ToList();
            this.HZa = rhs.HZa?.ToList();
        }
 
        /// <summary>
        /// 运行数量
        /// </summary>    
        public int RunningCount { get; set; }
 
        /// <summary>
        /// 运行标志
        /// </summary>    
        public List<int> RunningFlag { get; set; }
 
        /// <summary>
        /// 分析频率
        /// </summary>
        public List<double> HZa { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public EtaMultiRealRecord Clone()
        {
            return new EtaMultiRealRecord(this);
        }
 
        object ICloneable.Clone()
        {
            return this.Clone();
        }
    }
 
}