You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
1.4 KiB
C#
70 lines
1.4 KiB
C#
|
|
using SqlSugar;
|
|
using System;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
namespace Myshipping.Core.Entity;
|
|
|
|
/// <summary>
|
|
/// 异常日志
|
|
/// </summary>
|
|
[SugarTable("sys_log_ex")]
|
|
[Description("异常日志")]
|
|
[Tenant("logs")]
|
|
public class SysLogEx : AutoIncrementEntity
|
|
{
|
|
/// <summary>
|
|
/// 操作人
|
|
/// </summary>
|
|
[MaxLength(20)]
|
|
public string Account { get; set; }
|
|
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
[MaxLength(100)]
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 类名
|
|
/// </summary>
|
|
[MaxLength(100)]
|
|
public string ClassName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 方法名
|
|
/// </summary>
|
|
[MaxLength(100)]
|
|
public string MethodName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 异常名称
|
|
/// </summary>
|
|
public string ExceptionName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 异常信息
|
|
/// </summary>
|
|
public string ExceptionMsg { get; set; }
|
|
|
|
/// <summary>
|
|
/// 异常源
|
|
/// </summary>
|
|
public string ExceptionSource { get; set; }
|
|
|
|
/// <summary>
|
|
/// 堆栈信息
|
|
/// </summary>
|
|
public string StackTrace { get; set; }
|
|
|
|
/// <summary>
|
|
/// 参数对象
|
|
/// </summary>
|
|
public string ParamsObj { get; set; }
|
|
|
|
/// <summary>
|
|
/// 异常时间
|
|
/// </summary>
|
|
public DateTime ExceptionTime { get; set; }
|
|
}
|