houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.iailab.framework.common.annotation;
 
import java.lang.annotation.*;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2022年05月21日 10:59:00
 */
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface AutoDict {
 
    /**
     * 暂时无用
     * @return
     */
    String value() default "";
}