using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Model
{
///
/// 监测数据对接原始记录
///
public class MonitorDataDockingSrcRecord
{
///
///
///
public MonitorDataDockingSrcRecord() { }
///
///
///
public MonitorDataDockingSrcRecord(MonitorDataDockingSrcRecord rhs)
{
this.SignId = rhs.SignId;
this.RecordType = rhs.RecordType;
this.SrcTime = rhs.SrcTime;
this.SrcValue = rhs.SrcValue;
}
///
/// 标记标识
///
public string SignId { get; set; }
///
/// 记录类型
///
public Model.eMonitorType RecordType { get; set; }
///
/// 原始时间
///
public DateTime SrcTime { get; set; }
///
/// 原始值
///
public string SrcValue { get; set; }
}
}