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
| package cn.lili.modules.order.order.aop;
|
| import java.lang.annotation.*;
|
| /**
| * 订单日志AOP注解
| *
| * @author Chopper
| * @since 2020/11/17 7:22 下午
| */
| @Target({ElementType.PARAMETER, ElementType.METHOD})
| @Retention(RetentionPolicy.RUNTIME)
| @Documented
| public @interface OrderLogPoint {
|
| /**
| * 日志名称
| *
| * @return
| */
| String description();
|
| /**
| * 订单编号
| *
| * @return
| */
| String orderSn();
|
| }
|
|