using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IStation.Calculation.Eta.Model
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public class LogicAnaInfoBundle
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public long LogicID { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public List<StationAnaInfoBundle> ChildStationBundleList { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public List< IStation.Calculation.Eta.Model.LogicAnaInfoBundle> ChildLogicBundleList { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
protected IStation.Model.EtaLogicRealRecordPure _result = null;
|
/// <summary>
|
///
|
/// </summary>
|
public IStation.Model.EtaLogicRealRecordPure AnaResult
|
{
|
get
|
{
|
return _result;
|
}
|
set
|
{
|
_result = value;
|
}
|
}
|
}
|
}
|