Shuxia Ning
2024-11-06 adf8dc1c7cae1b12f486dcdb3d7daf4a5a59ec52
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
using System.Collections.Generic;
 
namespace IStation.Model
{
    public class StationSignalRecordPacket
    {
        public StationSignalRecordPacket() { }
 
        /// <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<StationSignalRecord> StationSignalRecords { get; set; }
    }
}