using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Entity.Ammeter { /// /// 电表15分钟保存一次数据 /// [SugarTable("emeter_minutes_energy")] public partial class EmeterMinutesEnergy { [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")] public long Id { get; set; } /// /// 电表编码 /// [SugarColumn(ColumnName = "code")] public string Mn { get; set; } /// /// 千瓦时 /// [SugarColumn(ColumnName = "value")] public float Value { get; set; } /// /// 时间 /// [SugarColumn(ColumnName = "time")] public DateTime Time { get; set; } } }