using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
///
///
public class DemoEnginePumpLeftMiddleInfoDto
{
///
/// 总供水量
///
public int TotalSupplyWater { get; set; }
///
/// CurrentSupplyWater对应的Label 值, 按日 就是昨日供水量 , 按月 就是当月供水量 , 按年就是当年供水量
///
public string CurrentValueLabel { get; set; }
///
/// 按日 就是昨日供水量 , 按月 就是当月供水量 , 按年就是当年供水量
///
public int CurrentSupplyWater { get; set; }
///
///
///
public List Details { get; set; }
}
}