using SqlSugar; namespace Wood.Entity.SystemManage { /// /// 错误日志 /// [SugarTable("SysLogException", "错误日志")] public class LogExceptionEntity : LogOperationEntity { /// /// 错误路径信息 /// [SugarColumn(ColumnDescription = "请求类型", Length = 32, IsNullable = true)] public string? Source { get; set; } /// /// 错误信息 /// [SugarColumn(ColumnDescription = "错误信息", ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] public string? Exception { get; set; } /// /// 错误路径信息 /// [SugarColumn(ColumnDescription = "请求类型", ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] public string? ExceptionStackTrace { get; set; } /// /// 错误备注 /// [SugarColumn(ColumnDescription = "错误备注", IsNullable = true)] public string? Remark { get; set; } } }