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 MonitorHourRecord : MonitorHourRecordPure, System.ICloneable
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public MonitorHourRecord() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public MonitorHourRecord(MonitorHourRecordPure rhs) : base(rhs) { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public MonitorHourRecord(MonitorHourRecord rhs) : base(rhs)
|
{
|
this.ID = rhs.ID;
|
}
|
|
/// <summary>
|
///
|
/// </summary>
|
public void Reset(MonitorHourRecord rhs)
|
{
|
this.ID = rhs.ID;
|
this.CorpID = rhs.CorpID;
|
this.MonitorPointID = rhs.MonitorPointID;
|
this.SignalID = rhs.SignalID;
|
this.RecordType = rhs.RecordType;
|
this.DataDay = rhs.DataDay;
|
this.DataHour = rhs.DataHour;
|
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 MonitorHourRecord Clone()
|
{
|
return (MonitorHourRecord)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
}
|
|
}
|