31 lines
816 B
C#
31 lines
816 B
C#
using System;
|
||
using System.ComponentModel.DataAnnotations;
|
||
using SqlSugar;
|
||
|
||
namespace HT.Cloud.Domain.Entity.ReportManage
|
||
{
|
||
/// <summary>
|
||
/// 创 建:cdl
|
||
/// 日 期:2023-03-30 14:52
|
||
/// 描 述:实时报表SQL转换实体类
|
||
/// </summary>
|
||
[SugarTable("HT_REALTIME_APPSTATE")]
|
||
[Tenant("1")]
|
||
public class RTApplicationStateEntity
|
||
{
|
||
|
||
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "ID", ColumnDescription = "", ColumnDataType = "int(10)")]
|
||
public int Id { get; set; }
|
||
/// <summary>
|
||
/// 显示名称
|
||
///</summary>
|
||
[SugarColumn(ColumnName = "ApplicationName", ColumnDescription = "", ColumnDataType = "int(128)", IsNullable = true)]
|
||
public string Description { get; set; }
|
||
|
||
}
|
||
}
|