大版本更新推送

This commit is contained in:
dell
2023-11-06 21:26:55 +08:00
parent b94dc66092
commit 17b4e899ff
36 changed files with 3491 additions and 377 deletions

View File

@ -0,0 +1,30 @@
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; }
}
}