//------------------------------------------------------------------------------ // 此代码版权声明为全文件覆盖,如有原作者特别声明,会在下方手动补充 // 此代码版权(除特别声明外的代码)归作者本人Diego所有 // 源代码使用协议遵循本仓库的开源协议及附加协议 // Gitee源代码仓库:https://gitee.com/diego2098/ThingsGateway // Github源代码仓库:https://github.com/kimdiego2098/ThingsGateway // 使用文档:https://thingsgateway.cn/ // QQ群:605534569 //------------------------------------------------------------------------------ using BootstrapBlazor.Components; using LogLevel = Microsoft.Extensions.Logging.LogLevel; namespace ThingsGateway.Gateway.Application; /// /// 后台日志表 /// #if !Management [SugarTable("backend_log", TableDescription = "后台日志表")] [Tenant(SqlSugarConst.DB_Log)] #endif public class BackendLog : PrimaryIdEntity { /// /// 日志时间 /// [SugarColumn(ColumnDescription = "日志时间", IsNullable = false)] [AutoGenerateColumn(Visible = true, DefaultSort = true, Sortable = true, DefaultSortOrder = SortOrder.Desc)] public DateTime LogTime { get; set; } /// /// 日志级别 /// [SugarColumn(ColumnDescription = "日志级别", IsNullable = false)] [AutoGenerateColumn(Visible = true, Filterable = true, Sortable = true)] public LogLevel LogLevel { get; set; } /// /// 日志来源 /// [SugarColumn(ColumnDescription = "日志来源", IsNullable = false)] [AutoGenerateColumn(Visible = true, Filterable = true, Sortable = true)] public string LogSource { get; set; } /// /// 具体消息 /// [SugarColumn(ColumnDescription = "具体消息", ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] [AutoGenerateColumn(ShowTips = true, Filterable = true, Sortable = true)] public string? LogMessage { get; set; } /// /// 异常对象 /// [SugarColumn(ColumnDescription = "异常对象", ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] [AutoGenerateColumn(ShowTips = true, Filterable = true, Sortable = true)] public string? Exception { get; set; } }