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

45 lines
1.1 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
{
/// <summary>
/// 抄读输入
/// </summary>
public class ReadingInput:BaseInput
{
/// <summary>
/// 电表ID
/// </summary>
public int AmmeterId { get; set; }
/// <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; }
}
}