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