using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 能效kpi年度量项记录 /// public class EtaKpiYearItemRecord { /// /// 月份 /// public int Month { get; set; } /// /// 值 /// public double? Value { get; set; } } }