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.

74 lines
1.8 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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_minutes_energy")]
public partial class EmeterMinutesEnergy
{
[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:直流表 2j交流表
/// </summary>
[SugarColumn(ColumnName = "type")]
public int Type { get; set; }
[SugarColumn(ColumnName = "upload_flag")]
public int UploadFlag { get; set; }
/// <summary>
/// 统计sql时间接收
/// </summary>
[SugarColumn(IsIgnore = true)]
public virtual DateTime UploadTime { get; set; }
/// <summary>
/// 统计sql小时接收
/// </summary>
[SugarColumn(IsIgnore = true)]
public virtual string Hour { get; set; }
/// <summary>
/// 统计sql分钟接收
/// </summary>
[SugarColumn(IsIgnore = true)]
public virtual string Minute { get; set; }
}
}