using Yw.Model; namespace IStation.Server { /// /// 能效自定义分析上下文 /// public class EpEtaCustomAnalyContext : EpEtaBaseAnalyContext { /// /// /// public EpEtaCustomAnalyContext(EtaAnalyConfigure configure) : base(configure) { } /// /// /// public EpEtaCustomAnalyContext(EtaAnalyConfigure configure, Model.LogicSite site) : base(configure) { this.Name = site.Name; this.Code = site.Code; this.Description = site.Description; } /// /// 名称 /// public string Name { get; set; } /// /// 编码 /// public string Code { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// 机组分析上下文项列表 /// public List EnginePumpContextItemList { get; set; } /// /// 监测分析上下文项列表 /// public List MonitorContextItemList { get; set; } } }