using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 泵站数据分析汇总信息(左中部分) /// public class DemoHomeLeftMiddleItemInfoDto { /// /// 横坐标 /// public string Label { get; set; } /// /// 总供水量 /// public int SupplyWater { get; set; } /// /// 总能耗量 /// public int EnergyConsumption { get; set; } } }