namespace Admin.NET.Core; /// /// 系统异常日志表 /// [SugarTable("sys_log_ex", "系统异常日志表")] public class SysLogEx : EntityBase { /// /// 类名 /// [SugarColumn(ColumnDescription = "类名", Length = 100)] [MaxLength(100)] public string ClassName { get; set; } /// /// 方法名 /// [SugarColumn(ColumnDescription = "方法名", Length = 100)] [MaxLength(100)] public string MethodName { get; set; } /// /// 异常名称 /// [SugarColumn(ColumnDescription = "异常名称", ColumnDataType = "text")] public string ExceptionName { get; set; } /// /// 异常信息 /// [SugarColumn(ColumnDescription = "异常信息", ColumnDataType = "text")] public string ExceptionMsg { get; set; } /// /// 异常源 /// [SugarColumn(ColumnDescription = "异常源", ColumnDataType = "text")] public string ExceptionSource { get; set; } /// /// 堆栈信息 /// [SugarColumn(ColumnDescription = "堆栈信息", ColumnDataType = "text")] public string StackTrace { get; set; } /// /// 参数对象 /// [SugarColumn(ColumnDescription = "参数对象", ColumnDataType = "text")] public string ParamsObj { get; set; } /// /// 账号名称 /// [SugarColumn(ColumnDescription = "账号名称", Length = 20)] [MaxLength(20)] public string UserName { get; set; } /// /// 真实姓名 /// [SugarColumn(ColumnDescription = "真实姓名", Length = 20)] [MaxLength(20)] public string RealName { get; set; } }