using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Dto
{
///
///
///
public class ReformAnaResultItem
{
///
///
///
public int Type { get; set; }//0: 原始 1:切割 2:变速 3:换泵
///
///
///
public string Name { get; set; }
///
///
///
public string Note { get; set; }
///
///
///
public bool IsAble { get; set; }//是否可行
///
///
///
public bool CurrentIsCorrent { get; set; }
///
///
///
public double CurrentFrequence { get; set; }
///
///
///
public double WorkPointQ { get; set; }
///
///
///
public double WorkPointH { get; set; }
///
///
///
public double? WorkPointE { get; set; }
///
/// /
///
public double? WorkPointP { get; set; }
///
///
///
public double? PerDayPower { get; set; }
///
///
///
public double? PerYearPower { get; set; }
///
///
///
public double? PerYearCost { get; set; }
///
///
///
public List PointsQH { get; set; }
///
///
///
public List PointsQE { get; set; }
///
///
///
public List PointsQP { get; set; }
///
///
///
public string SavePowerNumber { get; set; }
///
///
///
public string SavePowerCost { get; set; }
///
///
///
public double? PerYearQ { get; set; }
///
///
///
public string CostPerM3 { get; set; }
}
}