cloudflight
2024-11-23 a9cbce35e0e6ea595d047d53d0acd2b15f2c548c
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
using Yw.Model;
 
namespace IStation.Server
{
    /// <summary>
    /// 能效自定义分析上下文
    /// </summary>
    public class EpEtaCustomAnalyContext : EpEtaBaseAnalyContext
    {
        /// <summary>
        /// 
        /// </summary>
        public EpEtaCustomAnalyContext(EtaAnalyConfigure configure) : base(configure)
        {
 
        }
 
        /// <summary>
        /// 
        /// </summary>
        public EpEtaCustomAnalyContext(EtaAnalyConfigure configure, Model.LogicSite site) : base(configure)
        {
            this.Name = site.Name;
            this.Code = site.Code;
            this.Description = site.Description;
        }
 
        /// <summary>
        /// 名称
        /// </summary>    
        public string Name { get; set; }
 
        /// <summary>
        /// 编码
        /// </summary>
        public string Code { get; set; }
 
        /// <summary>
        /// 说明
        /// </summary>
        public string Description { get; set; }
 
        /// <summary>
        /// 机组分析上下文项列表
        /// </summary>
        public List<EpEtaEnginePumpAnalyContextItem> EnginePumpContextItemList { get; set; }
 
        /// <summary>
        /// 监测分析上下文项列表
        /// </summary>
        public List<EpEtaMonitorAnalyContextItem> MonitorContextItemList { get; set; }
 
 
 
 
 
 
    }
}