using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 获取机组供水数据分析数据(左中部分) /// public class SzjtEnginePumpLeftMiddleItemInfoDto { /// /// 横坐标 /// public string Label { get; set; } /// /// 总供水量 /// public int SupplyWater { get; set; } /// /// 总能耗量 /// public int EnergyConsumption { get; set; } } }