using System;
namespace IStation.Model
{
///
/// 监测数据集概要
///
public class MonitorDataSetSummary
{
///
/// Id
///
public long Id { get; set; }
///
/// 监测点标识
///
public long MonitorPointID { get; set; }
///
/// 信号标识
///
public long SignalID { get; set; }
///
/// 年
///
public int Year { get; set; }
///
/// 月
///
public int Month { get; set; }
///
/// 最大时间
///
public DateTime MaxTime { get; set; }
///
/// 最小时间
///
public DateTime MinTime { get; set; }
///
/// 数据量
///
public int Count { get; set; }
}
}