sunpengfei
2025-08-19 f7977851d2b5ba89bffb1fdc9630ba8a5df30395
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
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>
    [Resource([EnumResourceController.LogRecords])]
    public class GetExceptionLogsQuery : PagedListQuery<GetExceptionLogsQueryResult, GetExceptionLogsQueryResultItem>
    {
        /// <summary>
        /// 跟踪Id
        /// </summary>
        public string TraceId { get; set; }
 
        /// <summary>
        /// 关键字
        /// </summary>
        public string Keywords { get; set; }
 
        /// <summary>
        /// 创建时间-起始
        /// </summary>
        public DateTime? CreatedTimeBegin { get; set; }
 
        /// <summary>
        /// 创建时间-截止
        /// </summary>
        public DateTime? CreatedTimeEnd { get; set; }
    }
 
    /// <summary>
    /// 异常日志分页列表查询-结果
    /// </summary>
    public class GetExceptionLogsQueryResult : PagedListQueryResult<GetExceptionLogsQueryResultItem>
    {
 
    }
 
    /// <summary>
    /// 异常日志分页列表查询-结果-项
    /// </summary>
    public class GetExceptionLogsQueryResultItem
    {
        /// <summary>
        /// 类型
        /// </summary>
        public string Type { get; set; }
 
        /// <summary>
        /// 代码
        /// </summary>
        public string Code { get; set; }
 
        /// <summary>
        /// 消息
        /// </summary>
        public string Message { get; set; }
 
        /// <summary>
        /// 堆栈跟踪
        /// </summary>
        public string StackTrace { get; set; }
 
        /// <summary>
        /// 操作人Id
        /// </summary>
        public Guid? CreatedUserId { get; set; }
 
        /// <summary>
        /// 操作人
        /// </summary>
        public GetResourceLogsQueryResultItemCreatedUser CreatedUser { get; set; }
 
        /// <summary>
        /// 创建时间
        /// </summary>
        public DateTimeOffset CreatedTime { get; set; }
    }
}