using System;
|
using System.Text;
|
using System.Collections.Generic;
|
using System.Data;
|
using System.Runtime.Serialization;
|
using System.ComponentModel.DataAnnotations;
|
|
namespace IStation.Model
|
{
|
/// <summary>
|
/// 年监测记录
|
/// </summary>
|
public partial class MonitorYearRecord : MonitorYearRecordPure, System.ICloneable
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public MonitorYearRecord() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public MonitorYearRecord(MonitorYearRecordPure rhs) : base(rhs) { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public MonitorYearRecord(MonitorYearRecord rhs) : base(rhs)
|
{
|
this.ID = rhs.ID;
|
}
|
|
/// <summary>
|
///
|
/// </summary>
|
public void Reset(MonitorYearRecord rhs)
|
{
|
this.ID = rhs.ID;
|
this.CorpID = rhs.CorpID;
|
this.MonitorPointID = rhs.MonitorPointID;
|
this.SignalID = rhs.SignalID;
|
this.RecordType = rhs.RecordType;
|
this.DataYear = rhs.DataYear;
|
this.SrcTime = rhs.SrcTime;
|
this.DataTime = rhs.DataTime;
|
this.SrcValue = rhs.SrcValue;
|
this.DataValue = rhs.DataValue;
|
this.DataStatus = rhs.DataStatus;
|
}
|
|
/// <summary>
|
/// 标识
|
/// </summary>
|
public long ID { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public MonitorYearRecord Clone()
|
{
|
return (MonitorYearRecord)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
}
|
|
}
|