using IStation.Model;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IStation.Server
|
{
|
/// <summary>
|
/// 数据对接标准记录dto
|
/// </summary>
|
public class DataDockingStandardRecordDto
|
{
|
|
public DataDockingStandardRecordDto(string recordId, eMonitorType recordType, DateTime recordTime, string recordValue)
|
{
|
RecordId = recordId;
|
RecordType = recordType;
|
RecordTime = recordTime;
|
RecordValue = recordValue;
|
}
|
|
|
/// <summary>
|
/// 记录标识
|
/// </summary>
|
public string RecordId { get; set; }
|
|
/// <summary>
|
/// 记录类型
|
/// </summary>
|
public eMonitorType RecordType { get; set; }
|
|
/// <summary>
|
/// 记录时间
|
/// </summary>
|
public DateTime RecordTime { get; set; }
|
|
/// <summary>
|
/// 记录值
|
/// </summary>
|
public string RecordValue { get; set; }
|
|
}
|
}
|