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