Shuxia Ning
2025-02-13 2f1cbec203dcff25df7a5c2b51b13ec558f2c3db
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
using System;
 
namespace IStation.Entity
{
    /// <summary>
    ///  曲线分析能效结论汇总
    /// </summary>
    public class CurveAnaRunResultSummary
    {
        public CurveAnaRunResultSummary() { }
        public CurveAnaRunResultSummary(CurveAnaRunResultSummary rhs)
        {
            this.RunningCount = rhs.RunningCount;
            this.RunningFlag = rhs.RunningFlag;
            this.MaxTime = rhs.MaxTime;
            this.MinTime = rhs.MinTime;
            this.TotalPointCount = rhs.TotalPointCount;
            this.AnaPointCount = rhs.AnaPointCount;
            this.UsePointCount = rhs.UsePointCount;
        }
 
        public void Reset(CurveAnaRunResultSummary rhs)
        {
            this.RunningCount = rhs.RunningCount;
            this.RunningFlag = rhs.RunningFlag;
            this.MaxTime = rhs.MaxTime;
            this.MinTime = rhs.MinTime;
            this.TotalPointCount = rhs.TotalPointCount;
            this.AnaPointCount = rhs.AnaPointCount;
            this.UsePointCount = rhs.UsePointCount;
        }
 
        /// <summary>
        /// 运行数量
        /// </summary>
        public int RunningCount { get; set; }
 
        /// <summary>
        /// 运行标志
        /// </summary>
        public int RunningFlag { get; set; }
 
        /// <summary>
        /// 最大时间
        /// </summary>
        public DateTime MaxTime { get; set; }
 
        /// <summary>
        /// 最小时间
        /// </summary>
        public DateTime MinTime { get; set; }
 
        /// <summary>
        /// 总点数
        /// </summary>
        public int TotalPointCount { get; set; }
 
        /// <summary>
        /// 可分析总点数
        /// </summary>
        public int AnaPointCount { get; set; }
 
        /// <summary>
        /// 使用点数量
        /// </summary>
        public int UsePointCount { get; set; }
 
    }
}