using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IStation.Application
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public class SzjtGlfqRightTopInfoDto
|
{
|
/// <summary>
|
/// 分区数量
|
/// </summary>
|
public int DmaNumber { get; set; }
|
/// <summary>
|
/// 上月累计供水
|
/// </summary>
|
public double LastTotalSupplyWater { get; set; }
|
/// <summary>
|
/// 上月漏损率
|
/// </summary>
|
public double LastMonthLeakRatio { get; set; }
|
/// <summary>
|
/// 当年漏损率
|
/// </summary>
|
public double ThisYearLeakRatio { get; set; }
|
}
|
}
|