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; }
|
|
|
|
|
|
|
}
|
}
|