You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
37 lines
1.1 KiB
3 weeks ago
|
using SqlSugar;
|
||
|
|
||
|
namespace Wood.Entity.SystemManage
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 错误日志
|
||
|
/// </summary>
|
||
|
[SugarTable("SysLogException", "错误日志")]
|
||
|
public class LogExceptionEntity : LogOperationEntity
|
||
|
{
|
||
|
|
||
|
/// <summary>
|
||
|
/// 错误路径信息
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "请求类型", Length = 32, IsNullable = true)]
|
||
|
public string? Source { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 错误信息
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "错误信息", ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]
|
||
|
public string? Exception { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 错误路径信息
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "请求类型", ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]
|
||
|
public string? ExceptionStackTrace { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 错误备注
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "错误备注", IsNullable = true)]
|
||
|
public string? Remark { get; set; }
|
||
|
}
|
||
|
}
|