using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
using System.Runtime.Serialization;
using System.Linq;
namespace IStation.Model
{
///
/// 监测数据集
///
public partial class MonitorDataSet
{
///
/// 监测点标识
///
public long MonitorPointId { get; set; }
///
/// 年
///
public int Year { get; set; }
///
/// 月
///
public int Month { get; set; }
///
/// 信号记录包集合
///
public List RecordList { get; set; }
}
}