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
| package cn.lili.modules.order.aftersale.aop;
|
| import java.lang.annotation.*;
|
| /**
| * 售后日志AOP注解
| *
| * @author Chopper
| * @since 2020/11/17 7:22 下午
| */
| @Target({ElementType.TYPE, ElementType.METHOD})
| @Retention(RetentionPolicy.RUNTIME)
| @Documented
| public @interface AfterSaleLogPoint {
|
| /**
| * 日志名称
| *
| * @return
| */
| String description();
|
| /**
| * 售后SN
| *
| * @return
| */
| String sn();
|
|
| /**
| *
| * @return 售后状态
| */
| String serviceStatus() default "";
|
| }
|
|