mirror of
https://gitee.com/ThingsGateway/ThingsGateway.git
synced 2025-10-24 04:17:08 +08:00
61 lines
2.3 KiB
C#
61 lines
2.3 KiB
C#
//------------------------------------------------------------------------------
|
||
// 此代码版权声明为全文件覆盖,如有原作者特别声明,会在下方手动补充
|
||
// 此代码版权(除特别声明外的代码)归作者本人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;
|
||
|
||
/// <summary>
|
||
/// 后台日志表
|
||
///</summary>
|
||
#if !Management
|
||
[SugarTable("backend_log", TableDescription = "后台日志表")]
|
||
[Tenant(SqlSugarConst.DB_Log)]
|
||
#endif
|
||
public class BackendLog : PrimaryIdEntity
|
||
{
|
||
/// <summary>
|
||
/// 日志时间
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "日志时间", IsNullable = false)]
|
||
[AutoGenerateColumn(Visible = true, DefaultSort = true, Sortable = true, DefaultSortOrder = SortOrder.Desc)]
|
||
public DateTime LogTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// 日志级别
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "日志级别", IsNullable = false)]
|
||
[AutoGenerateColumn(Visible = true, Filterable = true, Sortable = true)]
|
||
public LogLevel LogLevel { get; set; }
|
||
|
||
/// <summary>
|
||
/// 日志来源
|
||
///</summary>
|
||
[SugarColumn(ColumnDescription = "日志来源", IsNullable = false)]
|
||
[AutoGenerateColumn(Visible = true, Filterable = true, Sortable = true)]
|
||
public string LogSource { get; set; }
|
||
|
||
/// <summary>
|
||
/// 具体消息
|
||
///</summary>
|
||
[SugarColumn(ColumnDescription = "具体消息", ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]
|
||
[AutoGenerateColumn(ShowTips = true, Filterable = true, Sortable = true)]
|
||
public string? LogMessage { get; set; }
|
||
|
||
/// <summary>
|
||
/// 异常对象
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "异常对象", ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]
|
||
[AutoGenerateColumn(ShowTips = true, Filterable = true, Sortable = true)]
|
||
public string? Exception { get; set; }
|
||
}
|