using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Entity.Ammeter
{
///
/// 电表按天上传数据
///
[SugarTable("emeter_day_energy")]
public partial class EmeterDayEnergy
{
[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; }
}
}