using IStation.Model; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 数据对接标准记录dto /// public class DataDockingStandardRecordDto { /// /// 记录标识 /// public string RecordId { get; set; } /// /// 记录类型 /// public eMonitorType RecordType { get; set; } /// /// 记录时间 /// public DateTime RecordTime { get; set; } /// /// 记录值 /// public string RecordValue { get; set; } } }