using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IntelligentControlForsx.Service.HomeFormInfo.Domain
{
public class LeftInfo
{
///
/// 装机容量
///
public string PowerAll { set; get; }
///
/// 日总发电量
///
public string PowerByDay { set; get; }
///
/// 月发电量
///
public string PowerByMonth { set; get; }
///
/// 年发电量
///
public string PowerByYear { set; get; }
///
/// 月利用小时
///
public string UseHourByMounth { set; get; }
///
/// 年利用小时
///
public string UseHourByYear { set; get; }
///
/// 实时风速
///
public string WindSpeedNow { set; get; }
///
/// 实时功率
///
public string PowerNow { set; get; }
///
/// 接入数量
///
public string LinkCount { set; get; }
///
/// 运行数量
///
public string RunCount { set; get; }
///
/// 待机数量
///
public string StandByCount { set; get; }
///
/// 故障数量
///
public string FaultCount { set; get; }
///
/// 维护数量
///
public string MaintainCount { set; get; }
///
/// 限电数量
///
public string LimitCount { set; get; }
///
/// 离线数量
///
public string OfflineCount { set; get; }
///
/// 停机数量
///
public string StopCount { set; get; }
}
}