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