namespace IStation.Application.SZJT
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public class StationStatisticsMonthRecordMobileDto
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public StationStatisticsMonthRecordMobileDto()
|
{
|
WsDayParas = new StationStatisticsDayParasMobileDto();
|
EdDayParas = new StationStatisticsDayParasMobileDto();
|
DayRecords = new List<StationStatisticsDayRecordMobileDto>();
|
}
|
/// <summary>
|
///
|
/// </summary>
|
public double? Ws { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public double? Ed { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public StationStatisticsDayParasMobileDto WsDayParas { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public StationStatisticsDayParasMobileDto EdDayParas { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public List<StationStatisticsDayRecordMobileDto> DayRecords { get; set; }
|
}
|
}
|