lixiaojun
2024-01-27 dc6e8634e86c7f09adc412e2176fbf8c591b32c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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; }
    }
}