using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Entity.Ammeter { /// /// 电表一小时统计一次数据 /// [SugarTable("emeter_hour_energy")] public partial class EmeterHourEnergy { [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")] public long Id { get; set; } /// /// 电表编码 /// [SugarColumn(ColumnName = "code")] public string Code { get; set; } /// /// 小时变化值 千瓦时 /// [SugarColumn(ColumnName = "value")] public float Value { get; set; } /// /// 时间 /// [SugarColumn(ColumnName = "st")] public DateTime St { get; set; } /// /// 时间 /// [SugarColumn(ColumnName = "et")] public DateTime Et { get; set; } } }