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; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|