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