using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 能效kpi月度量项 /// public class EtaLargeScreenKpiMonthItem { /// /// 名称 /// public string Name { get; set; } /// /// 单位 /// public string Unit { get; set; } /// /// 上月记录列表 /// public List LastMonthRecords { get; set; } /// /// 当月记录列表 /// public List ThisMonthRecords { get; set; } } }