ningshuxia
2025-03-31 d321346f204a69b1929cc39098a5d88f44509e7b
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
using System.Collections.Generic;
 
namespace IStation.Model
{
    public class StationStatisticalRecordPacket
    {
        public StationStatisticalRecordPacket()
        {
            StationStatisticalRecords = new List<StationStatisticalRecord>();
        }
 
        /// <summary>
        /// 泵站标识
        /// </summary>    
        public long StationID { get; set; }
 
        /// <summary>
        /// 年
        /// </summary>    
        public int Year { get; set; }
 
        /// <summary>
        /// 月
        /// </summary>    
        public int Month { get; set; }
 
        /// <summary>
        /// 泵站统计记录列表
        /// </summary>
        public List<StationStatisticalRecord> StationStatisticalRecords { get; set; }
    }
}