namespace Admin.NET.Core;
///
/// 系统异常日志表
///
[SugarTable("sys_log_ex", "系统异常日志表")]
public class SysLogEx : EntityTenant
{
///
/// 记录器类别名称
///
[SugarColumn(ColumnDescription = "记录器类别名称", Length = 256)]
[MaxLength(256)]
public string LogName { get; set; }
///
/// 日志级别
///
[SugarColumn(ColumnDescription = "日志级别", Length = 16)]
[MaxLength(16)]
public string LogLevel { get; set; }
///
/// 事件Id
///
[SugarColumn(ColumnDescription = "事件Id", ColumnDataType = "longtext,text,clob")]
public string EventId { get; set; }
///
/// 日志消息
///
[SugarColumn(ColumnDescription = "日志消息", ColumnDataType = "longtext,text,clob")]
public string Message { get; set; }
///
/// 异常对象
///
[SugarColumn(ColumnDescription = "异常对象", ColumnDataType = "longtext,text,clob")]
public string Exception { get; set; }
///
/// 当前状态值
///
[SugarColumn(ColumnDescription = "当前状态值", ColumnDataType = "longtext,text,clob")]
public string State { get; set; }
///
/// 日志记录时间
///
[SugarColumn(ColumnDescription = "日志记录时间")]
public DateTime LogDateTime { get; set; }
///
/// 线程Id
///
[SugarColumn(ColumnDescription = "线程Id")]
public int ThreadId { get; set; }
}