17 lines
372 B
Java
17 lines
372 B
Java
package ink.wgink.annotation;
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
/**
|
|
* @ClassName: CheckObjectAnnotation
|
|
* @Description: 检查对象注解,标记的对象可递归检查属性
|
|
* @Author: wanggeng
|
|
* @Date: 2021/8/19 2:14 下午
|
|
* @Version: 1.0
|
|
*/
|
|
@Documented
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Target({ElementType.FIELD})
|
|
public @interface CheckBeanAnnotation {
|
|
}
|