45 lines
1.1 KiB
C#
Raw Normal View History

2024-12-25 16:25:16 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.CollectBus.EnergySystem.Dto
{
/// <summary>
/// 抄读输入
/// </summary>
public class ReadingInput:BaseInput
{
/// <summary>
/// 电表ID
/// </summary>
2024-12-27 17:00:31 +08:00
public int AmmeterId { get; set; }
2024-12-25 16:25:16 +08:00
/// <summary>
///采集编码 {"0C_129", "0C_131"}, 采集编码.0C_129:正向有功C_131:反向有功
/// </summary>
public string ItemCodes { get; set; }
/// <summary>
/// 集中器ID
/// </summary>
public int Point { get; set; }
/// <summary>
/// 冻结密度,-1:采集项本身无密度位0:无1:15分钟2:30分钟3:60分钟245:5分钟255:1分钟
/// </summary>
public int Density { get; set; }
/// <summary>
/// 电表1
/// </summary>
public int MeterType { get; set; }
/// <summary>
/// 数据时标起始时间:当前时间减1天
/// </summary>
public DateTime DataTime { get; set; }
}
}