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
package com.dl.common.annotation;
 
import com.dl.common.enums.BusinessType;
import com.dl.common.enums.OperatorType;
 
import java.lang.annotation.*;
 
/**
 * 自定义操作日志记录注解
 *
 * @author dl
 */
@Target({ElementType.PARAMETER, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Log {
    /**
     * 模块
     */
    String title() default "";
 
    /**
     * 功能
     */
    BusinessType businessType() default BusinessType.OTHER;
 
    /**
     * 操作人类别
     */
    OperatorType operatorType() default OperatorType.MANAGE;
 
    /**
     * 是否保存请求的参数
     */
    boolean isSaveRequestData() default true;
 
    /**
     * 是否保存响应的参数
     */
    boolean isSaveResponseData() default true;
 
    /**
     * 排除指定的请求参数
     */
    String[] excludeParamNames() default {};
 
}