using System;
using System.ComponentModel.DataAnnotations;
using SqlSugar;
namespace HT.Cloud.Domain.ReportManage
{
///
/// 创 建:cdl
/// 日 期:2023-03-30 14:52
/// 描 述:实时报表SQL转换实体类
///
[SugarTable("HT_RT_REPORT")]
public class RtReportEntity
{
///
///
///
[SugarColumn(ColumnName="HNO", ColumnDescription = "",ColumnDataType = "int(10)",IsPrimaryKey = true)]
public int HNO { get; set; }
///
///
///
[SugarColumn(ColumnName="HTAB", ColumnDescription = "",ColumnDataType = "nvarchar(50)")]
public string HTAB { get; set; }
///
///
///
[SugarColumn(ColumnName="HALI", ColumnDescription = "",ColumnDataType = "nvarchar(10)")]
public string HALI { get; set; }
///
///
///
[SugarColumn(ColumnName="HSYS", ColumnDescription = "",ColumnDataType = "nvarchar(100)", IsNullable = true)]
public string HSYS { get; set; }
///
///
///
[SugarColumn(ColumnName="HPRO", ColumnDescription = "",ColumnDataType = "nvarchar(100)", IsNullable = true)]
public string HPRO { get; set; }
///
///
///
[SugarColumn(ColumnName="HREQ", ColumnDescription = "",ColumnDataType = "nvarchar(50)", IsNullable = true)]
public string HREQ { get; set; }
///
///
///
[SugarColumn(ColumnName="HSIG", ColumnDescription = "",ColumnDataType = "nvarchar(10)")]
public string HSIG { get; set; }
///
///
///
[SugarColumn(ColumnName="HVAR", ColumnDescription = "",ColumnDataType = "nvarchar(80)")]
public string HVAR { get; set; }
///
///
///
[SugarColumn(ColumnName="HFVAR", ColumnDescription = "",ColumnDataType = "nvarchar(80)", IsNullable = true)]
public string HFVAR { get; set; }
///
///
///
[SugarColumn(ColumnName="HCON", ColumnDescription = "",ColumnDataType = "nvarchar(500)")]
public string HCON { get; set; }
///
///
///
[SugarColumn(ColumnName="HFLAG", ColumnDescription = "",ColumnDataType = "int(10)")]
public int HFLAG { get; set; }
}
}