using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
namespace IStation.Model
{
///
/// 实时监测记录 纯净Model
///
public class MonitorRealRecordPure : MonitorBasicRecord
{
///
///
///
public MonitorRealRecordPure() { }
///
///
///
public MonitorRealRecordPure(MonitorBasicRecord rhs) : base(rhs) { }
///
///
///
public MonitorRealRecordPure(MonitorRealRecordPure rhs) : base(rhs) { }
///
///
///
public void Reset(MonitorRealRecordPure rhs)
{
this.CorpID = rhs.CorpID;
this.MonitorPointID = rhs.MonitorPointID;
this.SignalID = rhs.SignalID;
this.RecordType = rhs.RecordType;
this.SrcTime = rhs.SrcTime;
this.SrcValue = rhs.SrcValue;
this.DataTime = rhs.DataTime;
this.DataValue = rhs.DataValue;
this.DataStatus = rhs.DataStatus;
}
}
}