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
| package cn.lili.modules.system.aspect.annotation;
|
| import java.lang.annotation.*;
|
| /**
| * 系统日志AOP注解
| *
| * @author Chopper
| */
| @Target({ElementType.TYPE, ElementType.METHOD})
| @Retention(RetentionPolicy.RUNTIME)
| @Inherited
| @Documented
| public @interface SystemLogPoint {
|
| /**
| * 日志名称
| *
| * @return
| */
| String description() default "";
|
| /**
| * 自定义日志内容
| *
| * @return
| */
| String customerLog() default "";
| }
|
|