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