
cloud.agileframework.mvc.annotation.NotAPI Maven / Gradle / Ivy
package cloud.agileframework.mvc.annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* 描述:排除某写不是API的方法或类
* 创建时间:2018/12/20
*
* @author 佟盟
* @version 1.0
* @since 1.0
*/
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Inherited
@Documented
public @interface NotAPI {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy