潘志宝
4 天以前 b8a0affd03b5fa9fa33cd6f870e90394c2df86c7
提交 | 用户 | 时间
a6de49 1 package com.iailab.framework.common.annotation;
H 2
3 import java.lang.annotation.*;
4
5 /**
6  * @author PanZhibao
7  * @Description
8  * @createTime 2022年05月21日 10:59:00
9  */
10 @Target(ElementType.METHOD)
11 @Retention(RetentionPolicy.RUNTIME)
12 @Documented
13 public @interface AutoDict {
14
15     /**
16      * 暂时无用
17      * @return
18      */
19     String value() default "";
20 }