package com.yiboshi.science.config.annotation;
import java.lang.annotation.*;
/**
* @Auther: kylin
* @Date: 2022/7/12 10:23
* @Description:
*/
@Inherited
@Documented
@Target({ElementType.METHOD, ElementType.ANNOTATION_TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface Anonymous {
}
-
徐俊 authoredd3497d84