namespace Admin.NET.Core;
///
/// 系统异常日志表
///
[SugarTable("sys_log_ex", "系统异常日志表")]
public class SysLogEx : EntityBase
{
///
/// 日志名称
///
[SugarColumn(ColumnDescription = "日志名称", Length = 200)]
public string LogName { get; set; }
///
/// 日志级别
///
[SugarColumn(ColumnDescription = "日志级别", Length = 20)]
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; }
}