using System;
using System.Collections.Generic;
namespace IStation.Model
{
///
/// 监测数据集概要
///
public partial class MonitorDataSetSummary
{
///
/// 监测点标识
///
public long MonitorPointId { get; set; }
///
/// 信号标识
///
public string 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; }
}
}