You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using SqlSugar;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Entity.Ammeter
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 电表按天上传数据
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("emeter_day_energy")]
|
|
|
|
|
public partial class EmeterDayEnergy
|
|
|
|
|
{
|
|
|
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")]
|
|
|
|
|
public long Id { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 电表编码
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "code")]
|
|
|
|
|
public string Code { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 累计值
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "value")]
|
|
|
|
|
public float Value { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "time")]
|
|
|
|
|
public string Time { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 实时值(取末端)
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "real_time_value")]
|
|
|
|
|
public float RealTimeValue { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 1:直流表 2:j交流表
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "type")]
|
|
|
|
|
public int Type { get; set; }
|
|
|
|
|
|
|
|
|
|
[SugarColumn(ColumnName = "upload_flag")]
|
|
|
|
|
|
|
|
|
|
public int UploadFlag { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|