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
using System.Collections.Generic;
 
namespace IStation.Entity
{
    /// <summary>
    ///  曲线分析能效运行记录组
    /// </summary>
    public class CurveAnaRecordMonthGroup
    {
        public CurveAnaRecordMonthGroup() { }
 
        public CurveAnaRecordMonthGroup(CurveAnaRecordMonthGroup rhs)
        {
            this.AnaSchemeId = rhs.AnaSchemeId;
            this.StructureId = rhs.StructureId;
            this.Year = rhs.Year;
            this.Month = rhs.Month;
            this.RunningCount = rhs.RunningCount;
            this.RunningFlag = rhs.RunningFlag;
            this.RecordList = new List<CurveAnaRecord>(rhs.RecordList);
        }
 
        public void Reset(CurveAnaRecordMonthGroup rhs)
        {
            this.AnaSchemeId = rhs.AnaSchemeId;
            this.StructureId = rhs.StructureId;
            this.Year = rhs.Year;
            this.Month = rhs.Month;
            this.RunningCount = rhs.RunningCount;
            this.RunningFlag = rhs.RunningFlag;
            this.RecordList = new List<CurveAnaRecord>(rhs.RecordList);
        }
 
 
        /// <summary>
        /// 分析方案Id
        /// </summary>
        public long AnaSchemeId { get; set; }
 
        /// <summary>
        /// 对象结构Id
        /// </summary>
        public long StructureId { get; set; }
 
        /// <summary>
        /// 年份
        /// </summary>
        public int Year { get; set; }
 
        /// <summary>
        /// 月份
        /// </summary>
        public int Month { get; set; }
 
        /// <summary>
        /// 运行数量
        /// </summary>
        public int RunningCount { get; set; }
 
        /// <summary>
        /// 运行标志
        /// </summary>
        public int RunningFlag { get; set; }
 
        /// <summary>
        /// 记录列表
        /// </summary> 
        public List<CurveAnaRecord> RecordList { get; set; }
 
    }
}