31 lines
818 B
C#
31 lines
818 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_HISTORY_REPORTPATH")]
|
|||
|
[Tenant("1")]
|
|||
|
public class HistoryReportPathEntity
|
|||
|
{
|
|||
|
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///
|
|||
|
///</summary>
|
|||
|
[SugarColumn(ColumnName = "ID", ColumnDescription = "", ColumnDataType = "int(10)")]
|
|||
|
public int Id { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 显示名称
|
|||
|
///</summary>
|
|||
|
[SugarColumn(ColumnName = "ReportPath", ColumnDescription = "", ColumnDataType = "nvarchar(256)", IsNullable = true)]
|
|||
|
public string ReportPath { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|