using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Entity.Ammeter
{
///
/// 电表实时数据
///
[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 Code { get; set; }
///
/// 千瓦时
///
[SugarColumn(ColumnName = "value")]
public float Value { get; set; }
///
/// 时间
///
[SugarColumn(ColumnName = "time")]
public DateTime Time { get; set; }
}
}