using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 能效kpi年度量项 /// public class EtaLargeScreenKpiYearItem { /// /// 名称 /// public string Name { get; set; } /// /// 单位 /// public string Unit { get; set; } /// /// 去年记录列表 /// public List LastYearRecords { get; set; } /// /// 今年记录列表 /// public List ThisYearRecords { get; set; } } }