sunpengfei
2025-08-15 8cb3856a913d593bc875fba07c3e3459f566d640
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace FlexJobApi.Core
{
    /// <summary>
    /// 异常日志
    /// </summary>
    public class ExceptionLog : CommonEntity<LogDbContextLocator>, IDbAuditLogIgnore
    {
        /// <summary>
        /// 类型
        /// </summary>
        [MaxLength(256)]
        public string Type { get; set; }
 
        /// <summary>
        /// 代码
        /// </summary>
        [MaxLength(32)]
        public string Code { get; set; }
 
        /// <summary>
        /// 消息
        /// </summary>
        public string Message { get; set; }
 
        /// <summary>
        /// 堆栈跟踪
        /// </summary>
        public string StackTrace { get; set; }
    }
}