using System; using System.ComponentModel.DataAnnotations; using SqlSugar; namespace HT.Cloud.Domain.Entity.ReportManage { /// /// 创 建:cdl /// 日 期:2023-03-30 14:52 /// 描 述:实时报表SQL转换实体类 /// [SugarTable("HT_HISTORY_REPORTPATH")] [Tenant("1")] public class HistoryReportPathEntity { /// /// /// [SugarColumn(ColumnName = "ID", ColumnDescription = "", ColumnDataType = "int(10)")] public int Id { get; set; } /// /// 显示名称 /// [SugarColumn(ColumnName = "ReportPath", ColumnDescription = "", ColumnDataType = "nvarchar(256)", IsNullable = true)] public string ReportPath { get; set; } } }