using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// /// public class DemoEnginePumpLeftMiddleItemInfoDto { /// /// 横坐标 /// public string Label { get; set; } /// /// 总供水量 /// public int SupplyWater { get; set; } /// /// 总能耗量 /// public int EnergyConsumption { get; set; } } }