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; }
|
}
|
}
|