using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IntelligentControlForsx.Service.WindturbineControl.Domain
{
public class OtherStatisticsInfo
{
///
/// 风场Id
///
public string StationId { set; get; }
///
/// 线路id
///
public string LineId { set; get; }
///
/// 待机集合
///
public IList StandByList { set; get; }
///
/// 低温启动集合
///
public IList ColdStartList { set; get; }
///
/// 正常停机集合
///
public IList NormalStopList { set; get; }
///
/// 离线集合
///
public IList OfflineList { set; get; }
///
///维护集合
///
public IList MaintainList { set; get; }
///
/// 故障集合
///
public IList FaultStopList { set; get; }
///
/// 上电状态集合
///
public IList OnlinePowerList { set; get; }
///
/// 启动状态集合
///
public IList StartList { set; get; }
///
/// 启动状态集合
///
public IList BuildPowerList { set; get; }
///
/// 瞬时风速
///
public float WindSpeed { set; get; }
///
/// 瞬时功率
///
public float Power { set; get; }
///
/// 出线功率
///
public float OutPower { set; get; }
}
}