using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IStation.Dto.DispatchAna
|
{
|
/// <summary>
|
/// 能效调度泵当前记录
|
/// </summary>
|
public class StationCurrentInfo
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public StationCurrentInfo() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public StationCurrentInfo(StationEtaAnaRecord anaRecord)
|
{
|
this.EtaAnaRecord = anaRecord;
|
|
//从能效路径中获取当前的信息
|
this.SignalRecord = new StationSignalRecord(anaRecord);
|
}
|
|
/// <summary>
|
///
|
/// </summary>
|
public StationCurrentInfo(StationEtaAnaRecord anaRecord, IStation.Calculation.DispatchAna.Model.CurrentRecordBundle signalRecord)
|
{
|
this.EtaAnaRecord = anaRecord;
|
|
this.SignalRecord = new StationSignalRecord(signalRecord);
|
}
|
|
|
/// <summary>
|
/// 能效分析记录
|
/// </summary>
|
public StationEtaAnaRecord EtaAnaRecord { get; set; }
|
|
/// <summary>
|
/// 测点记录
|
/// </summary>
|
public StationSignalRecord SignalRecord { get; set; }
|
}
|
}
|