using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Model
{
///
/// 监测数据对接接收记录
///
public class MonitorDataDockingReceiveRecord
{
public MonitorDataDockingReceiveRecord() { }
public MonitorDataDockingReceiveRecord(MonitorDataDockingReceiveRecord rhs)
{
this.SysId = rhs.SysId;
this.RecordType = rhs.RecordType;
this.SrcTime = rhs.SrcTime;
this.SrcValue = rhs.SrcValue;
}
///
/// 系统标识
///
public long SysId { get; set; }
///
/// 记录类型
///
public string RecordType { get; set; }
///
/// 原始时间
///
public DateTime? SrcTime { get; set; }
///
/// 原始值(如果是常规)
///
public string SrcValue { get; set; }
}
}