using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.DataFile
{
///
///
///
public class EnginePumpDayReportParasV1
{
///
/// 机泵名称
///
public string EnginePumpName { get; set; }
///
/// 机泵编码
///
public string EnginePumpNo { get; set; }
///
/// 报告日期
///
public DateTime ReportDay { get; set; }
///
/// 运行时间
///
public string RunTime { get; set; }
///
/// 供水量
///
public string WaterSupply { get; set; }
///
/// 耗电
///
public string ConsumePower { get; set; }
///
/// 平均效率
///
public string AverageEfficiency { get; set; }
///
/// 标准煤
///
public string StandardCoal{ get; set; }
///
/// 效率区间列表
///
public List> ErangeList { get; set; }
}
}