namespace IStation.Application.SZJT
{
///
///
///
public class DmaAnalyAreaMonthStatusDto
{
///
/// 年份
///
public int Year { get; set; }
///
/// 月份
///
public int Month { get; set; }
///
/// 流入水量
///
public double? InVol { get; set; }
///
/// 流出水量
///
public double? OutVol { get; set; }
///
/// 用水量
///
public double? UseVol { get; set; }
///
/// 抄表水量
///
public double? ReadVol { get; set; }
///
/// 漏损率
///
public double? LeakRate { get; set; }
}
}