1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package org.jeecg.common.aspect.annotation;
|
| import java.lang.annotation.*;
|
| /**
| * 通过此注解声明的接口,自动实现字典翻译
| *
| * @Author scott
| * @email jeecgos@163.com
| * @Date 2022年01月05日
| */
| @Target(ElementType.METHOD)
| @Retention(RetentionPolicy.RUNTIME)
| @Documented
| public @interface AutoDict {
|
| /**
| * 暂时无用
| * @return
| */
| String value() default "";
|
| }
|
|