using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IntelligentControlForsx.Service.ParameterFormInfo.Domain
{
public class GridViewData
{
///
/// 风机编号
///
public string WindturbineId { set; get; }
///
/// 冷却风温度
///
public double ColdWindTemperature { set; get; }
///
/// 有功功率
///
public double Power { set; get; }
///
/// 液压油温
///
public double OilTemperature { set; get; }
///
/// Pcspp温度
///
public double PcsppWindTemperature { set; get; }
///
/// U1绕组温度
///
public double U1CirclingTemperature { set; get; }
///
/// U2绕组温度
///
public double U2CirclingTemperature { set; get; }
///
/// V1绕组温度
///
public double V1CirclingTemperature { set; get; }
///
/// V2绕组温度
///
public double V2CirclingTemperature { set; get; }
///
/// W1绕组温度
///
public double W1CirclingTemperature { set; get; }
///
/// W2绕组温度
///
public double W2CirclingTemperature { set; get; }
///
/// 轴承A温度
///
public double AxisATemperature { set; get; }
///
/// 轴承B温度
///
public double AxisBTemperature { set; get; }
///
/// 齿轮箱温度
///
public double GearBoxTemperature { set; get; }
///
/// 齿轮轴1温度
///
public double GearAxis1Temperature { set; get; }
///
/// 齿轮轴2温度
///
public double GearAxis2Temperature { set; get; }
///
/// 机舱温度
///
public double RoomTemperature { set; get; }
///
/// 滑环温度
///
public double RingTemperature { set; get; }
///
/// 环境温度
///
public double RoundTemperature { set; get; }
}
}