zhengyuxuan
2025-04-02 d0ca4c5479641ac5616d1e6fd2c258aea7d93222
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
using LifePayment.Domain.Shared;
using System;
using ZeroD.Util;
 
namespace LifePayment.Application.Contracts
{
    public class OperateHistoryDto
    {
        /// <summary>
        /// 关联关系ID
        /// </summary>
        public Guid RelationId { get; set; }
 
        /// <summary>
        /// 表名
        /// </summary>
        public int? TableType { get; set; }
 
        /// <summary>
        /// 操作
        /// </summary>
        public string OperateName { get; set; }
 
        /// <summary>
        /// 操作内容
        /// </summary>
        public string OperateContent { get; set; }
 
        /// <summary>
        /// 操作人
        /// </summary>
        public string CreatorName { get; set; }
 
        /// <summary>
        /// 操作时间
        /// </summary>
        public DateTime CreationTime { get; set; }
 
        /// <summary>
        /// 操作细节
        /// </summary>
        public string OperateDetail { get; set; }
    }
 
    public class GetOperateHistoryInput : PageInput
    {
        public Guid RelationId { get; set; }
 
        public string OperateName { get; set; }
    }
 
    public class QueryOperateHistoryByTypeInput : PageInput
    {
        public Guid TypeId { get; set; }
 
        public OperateHistoryTypeEnum OperateHistoryType { get; set; }
    }
 
    public class CreateOperateHistoryInput
    {
        /// <summary>
        /// 关联关系ID
        /// </summary>
        public Guid RelationId { get; set; }
 
        public int? TableType { get; set; }
 
        public string OperateName { get; set; }
 
        public string OperateContent { get; set; }
 
        public string CreatorName { get; set; }
    }
}