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