using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
/// 泵站数据分析明细信息(左下部分)
///
public class DemoStationLeftBottomItemInfoDto
{
///
/// 机泵 ID
///
public long ID { get; set; }
///
/// 机泵 名称
///
public string Name { get; set; }
///
/// 总供水量
///
public int SupplyWater { get; set; }
///
/// 总能耗量
///
public int EnergyConsumption { get; set; }
///
/// 单位能耗
///
public double UnitEnergyConsumption { get; set; }
}
}