2025-04-17 20:28:50 +08:00

85 lines
1.8 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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
{
/// <summary>
/// 集中器编号
/// </summary>
public string FocusCode { get; set; }
/// <summary>
/// 电表ID
/// </summary>
public int MeterId { get; set; }
/// <summary>
/// 电表地址
/// </summary>
public string MeterAddress { get; set; }
/// <summary>
/// 1, --电表
/// </summary>
public int MeterType { get; set; }
/// <summary>
/// 时间跨度
/// </summary>
public int TimeSpan { get; set; }
/// <summary>
/// 采集编码
/// </summary>
public string ItemCode { get; set; }
/// <summary>
/// 发送报文
/// </summary>
public string IssueData { get; set; }
/// <summary>
/// 接收报文
/// </summary>
public string ReceiveData { get; set; }
/// <summary>
/// 0手动采集1自动采集
/// </summary>
public int IsUpload { get; set; }
/// <summary>
/// 0正常数据1超时数据
/// </summary>
public int IsTimeout { get; set; }
/// <summary>
/// 是否为补抄
/// </summary>
public bool IsRepair { get; set; }
public DateTime AddTime { get; set; }
/// <summary>
/// 过期字段 年月日时
/// </summary>
public DateTime ExpireTime { get; set; }
/// <summary>
/// 异常错误信息
/// </summary>
public string Remark { get; set; }
}
}