using System;
using System.ComponentModel.DataAnnotations;
using SqlSugar;
namespace HT.Cloud.Domain.ReportManage
{
///
/// 创 建:cdl
/// 日 期:2023-03-30 14:52
/// 描 述:实时报表SQL转换实体类
///
[SugarTable("HT_REALTIME_MAINPAGE")]
[TenantAttribute("1")]
public class RTMainPageEntity
{
///
///
///
[SugarColumn(ColumnName = "ID", ColumnDescription = "", ColumnDataType = "int(10)")]
public int Id { get; set; }
///
/// 元素在主页位置
///
[SugarColumn(ColumnName = "ElementIndex", ColumnDescription = "", ColumnDataType = "int(50)", IsNullable = true)]
public string ElementIndex { get; set; }
///
/// 变量名称
///
[SugarColumn(ColumnName = "TagName", ColumnDescription = "", ColumnDataType = "int(128)", IsNullable = true)]
public string TagName { get; set; }
///
/// 显示名称
///
[SugarColumn(ColumnName = "Description", ColumnDescription = "", ColumnDataType = "int(128)", IsNullable = true)]
public string Description { get; set; }
///
/// 内容
///
[SugarColumn(ColumnName = "HREQ", ColumnDescription = "", ColumnDataType = "int(50)", IsNullable = true)]
public string Hreq { get; set; }
///
/// 表达式
///
[SugarColumn(ColumnName = "HSIG", ColumnDescription = "", ColumnDataType = "int(50)", IsNullable = true)]
public string Hsig { get; set; }
///
/// 单位
///
[SugarColumn(ColumnName = "Units", ColumnDescription = "", ColumnDataType = "int(64)", IsNullable = true)]
public string Units { get; set; }
}
}