using SqlSugar;
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace Myshipping.Core.Entity;
///
/// 异常日志
///
[SugarTable("sys_log_ex")]
[Description("异常日志")]
[Tenant("logs")]
public class SysLogEx : AutoIncrementEntity
{
///
/// 操作人
///
[MaxLength(20)]
public string Account { get; set; }
///
/// 名称
///
[MaxLength(100)]
public string Name { get; set; }
///
/// 类名
///
[MaxLength(100)]
public string ClassName { get; set; }
///
/// 方法名
///
[MaxLength(100)]
public string MethodName { get; set; }
///
/// 异常名称
///
public string ExceptionName { get; set; }
///
/// 异常信息
///
public string ExceptionMsg { get; set; }
///
/// 异常源
///
public string ExceptionSource { get; set; }
///
/// 堆栈信息
///
public string StackTrace { get; set; }
///
/// 参数对象
///
public string ParamsObj { get; set; }
///
/// 异常时间
///
public DateTime ExceptionTime { get; set; }
}