using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IStation.Application
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public class SzjtStationLeftMiddleInfoDto
|
{
|
/// <summary>
|
/// 昨日
|
/// </summary>
|
public double? YesterdayTotalSupplyWater { get; set; }
|
|
/// <summary>
|
/// 今日
|
/// </summary>
|
public double? TodayTotalSupplyWater { get; set; }
|
|
/// <summary>
|
/// 项列表
|
/// </summary>
|
public List<SzjtStationLeftMiddleItemInfoDto> Items { get; set; }
|
|
}
|
}
|