lixiaojun
2024-08-23 e96ae946f9b977bd23b4d7d446c6cedb2ae0dbab
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
using Yw.Model;
 
namespace IStation.Server
{
    /// <summary>
    /// 能效自定义分析上下文
    /// </summary>
    public class EMWSEtaCustomAnalyContext : EMWSEtaBaseAnalyContext
    {
        /// <summary>
        /// 
        /// </summary>
        public EMWSEtaCustomAnalyContext(EtaAnalyConfigure configure) : base(configure)
        {
 
        }
 
        /// <summary>
        /// 
        /// </summary>
        public EMWSEtaCustomAnalyContext(EtaAnalyConfigure configure, Model.LogicSite site) : base(configure)
        {
            this.Name = site.Name;
            this.Code = site.Code;
            this.Paras = site.Paras;
            this.Flags = site.Flags;
            this.TagName = site.TagName;
            this.Description = site.Description;
        }
 
        /// <summary>
        /// 名称
        /// </summary>    
        public string Name { get; set; }
 
        /// <summary>
        /// 编码
        /// </summary>
        public string Code { get; set; }
 
        /// <summary>
        /// 参数字典
        /// </summary>
        public Dictionary<string, string> Paras { get; set; }
 
        /// <summary>
        /// 标签
        /// </summary>
        public List<string> Flags { get; set; }
 
        /// <summary>
        /// 标志
        /// </summary>
        public string TagName { get; set; }
 
        /// <summary>
        /// 说明
        /// </summary>
        public string Description { get; set; }
 
        /// <summary>
        /// 监测分析上下文项列表
        /// </summary>
        public List<EMWSEtaMonitorAnalyContextItem> MonitorContextItemList { get; set; }
 
        /// <summary>
        /// 工位分析上下文项树列表
        /// </summary>
        public List<EMWSEtaWorkAnalyContextItem> WorkContextTreeList { get; set; }
 
        /// <summary>
        /// 工位分析上下文项树项列表
        /// </summary>
        public List<EMWSEtaWorkAnalyContextItem> WorkContextTreeItemList { get; set; }
 
 
 
 
    }
}