using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JiShe.CollectBus.EnergySystem.Dto { public class QueryRecordLogOutput { } public class QueryRecordLogRemarkOutput { /// /// 集中器编号 /// public string FocusCode { get; set; } /// /// 电表ID /// public int MeterId { get; set; } /// /// 电表地址 /// public string MeterAddress { get; set; } /// /// 1, --电表 /// public int MeterType { get; set; } /// /// 时间跨度 /// public int TimeSpan { get; set; } /// /// 采集编码 /// public string ItemCode { get; set; } /// /// 发送报文 /// public string IssueData { get; set; } /// /// 接收报文 /// public string ReceiveData { get; set; } /// /// 0手动采集,1自动采集 /// public int IsUpload { get; set; } /// /// 0正常数据,1超时数据 /// public int IsTimeout { get; set; } /// /// 是否为补抄 /// public bool IsRepair { get; set; } public DateTime AddTime { get; set; } /// /// 过期字段 年月日时 /// public DateTime ExpireTime { get; set; } /// /// 异常错误信息 /// public string Remark { get; set; } } }