namespace DS.WMS.Core.Sys.Dtos; /// /// 异常日志返回实体 /// public class ExceptionLogRes { /// /// ID /// public int Id { get; set; } /// /// 类名称 /// public string ClassName { get; set; } /// /// 方法名称 /// 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 string CreateBy { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } /// /// 租户id /// public long? TenantId { get; set; } }