using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
namespace IStation.Model
{
///
/// 年监测记录纯净类
///
public class MonitorYearRecordPure : MonitorBasicRecord
{
///
///
///
public MonitorYearRecordPure() { }
///
///
///
public MonitorYearRecordPure(MonitorBasicRecord rhs, int dataYear) : base(rhs)
{
this.DataYear = dataYear;
}
///
///
///
public MonitorYearRecordPure(MonitorYearRecordPure rhs) : base(rhs)
{
this.DataYear = rhs.DataYear;
}
///
/// 年
///
public int DataYear { get; set; }
}
}