xm
2024-06-14 722af26bc6fec32bb289b1df51a9016a4935610f
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
package com.dl.system.domain;
 
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
import com.alibaba.excel.annotation.ExcelProperty;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.dl.common.annotation.ExcelDictFormat;
import com.dl.common.convert.ExcelDictConvert;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
 
/**
 * 操作日志记录表 oper_log
 *
 * @author Lion Li
 */
 
@Data
@TableName("sys_oper_log")
@ExcelIgnoreUnannotated
public class SysOperLog implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 日志主键
     */
    @ExcelProperty(value = "日志主键")
//    @TableId(value = "oper_id")
//    private Long operId;
    @TableId(value = "oper_id",type = IdType.ASSIGN_UUID)
    private String operId;
 
    /**
     * 操作模块
     */
    @ExcelProperty(value = "操作模块")
    private String title;
 
    /**
     * 业务类型(0其它 1新增 2修改 3删除)
     */
    @ExcelProperty(value = "业务类型", converter = ExcelDictConvert.class)
    @ExcelDictFormat(dictType = "sys_oper_type")
    private Integer businessType;
 
    /**
     * 业务类型数组
     */
    @TableField(exist = false)
    private Integer[] businessTypes;
 
    /**
     * 请求方法
     */
    @ExcelProperty(value = "请求方法")
    private String method;
 
    /**
     * 请求方式
     */
    @ExcelProperty(value = "请求方式")
    private String requestMethod;
 
    /**
     * 操作类别(0其它 1后台用户 2手机端用户)
     */
    @ExcelProperty(value = "操作类别", converter = ExcelDictConvert.class)
    @ExcelDictFormat(readConverterExp = "0=其它,1=后台用户,2=手机端用户")
    private Integer operatorType;
 
    /**
     * 操作人员
     */
    @ExcelProperty(value = "操作人员")
    private String operName;
 
    /**
     * 部门名称
     */
    @ExcelProperty(value = "部门名称")
    private String deptName;
 
    /**
     * 请求url
     */
    @ExcelProperty(value = "请求地址")
    private String operUrl;
 
    /**
     * 操作地址
     */
    @ExcelProperty(value = "操作地址")
    private String operIp;
 
    /**
     * 操作地点
     */
    @ExcelProperty(value = "操作地点")
    private String operLocation;
 
    /**
     * 请求参数
     */
    @ExcelProperty(value = "请求参数")
    private String operParam;
 
    /**
     * 返回参数
     */
    @ExcelProperty(value = "返回参数")
    private String jsonResult;
 
    /**
     * 操作状态(0正常 1异常)
     */
    @ExcelProperty(value = "状态", converter = ExcelDictConvert.class)
    @ExcelDictFormat(dictType = "sys_common_status")
    private Integer status;
 
    /**
     * 错误消息
     */
    @ExcelProperty(value = "错误消息")
    private String errorMsg;
 
    /**
     * 操作时间
     */
    @ExcelProperty(value = "操作时间")
    private Date operTime;
 
    /**
     * 请求参数
     */
    @TableField(exist = false)
    private Map<String, Object> params = new HashMap<>();
 
}