using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IntelligentControlForsx.Service.Control.FormInfo
{
public class StatInfo
{
///
/// 风场编号
///
public string StationId { set; get; }
///
/// 风场名称
///
public string StationName { set; get; }
///
/// 总发电量
///
public double ?PowerAll { set; get; }
///
/// 年发电量
///
public double ?PowerByYear { set; get; }
///
/// 月发电量
///
public double? PowerByMonth { set; get; }
///
/// 日发电量
///
public double ?PowerByDay { set; get; }
///
/// 功率
///
public double ?Power { set; get; }
///
/// 风速
///
public double ?Speed { set; get; }
///
/// 接入数量
///
public int? LinkCount { set; get; }
///
/// 并网数量
///
public int? OnlineCount { set; get; }
///
/// 待机数量
///
public int? StandByCount { set; get; }
///
/// 故障数量
///
public int? FaultCount { set; get; }
///
/// 维护数量
///
public int? MaintainCount { set; get; }
///
/// 离线数量
///
public int? OfflineCount { set; get; }
///
/// 启动数量
///
public int? StartCount { set; get; }
///
/// 停机数量
///
public int? StopCount { set; get; }
///
/// 上电数量
///
public int? OnPowerCount { set; get; }
}
}