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
| package cn.lili.modules.verification.aop.annotation;
|
|
| import cn.lili.modules.verification.entity.enums.VerificationEnums;
|
| import java.lang.annotation.*;
|
| /**
| * 限流注解
| *
| * @author Chopper
| * @since 2018-02-05
| */
| @Target({ElementType.METHOD, ElementType.TYPE})
| @Retention(RetentionPolicy.RUNTIME)
| @Inherited
| @Documented
| public @interface Verification {
| /**
| * uuid
| *
| * @return String
| */
| String uuid();
|
| /**
| * 验证类型
| *
| * @return
| */
| VerificationEnums type();
| }
|
|