
love.keeping.starter.web.annotations.OpenApi Maven / Gradle / Ivy
package love.keeping.starter.web.annotations;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* 是否为开放API
*/
@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface OpenApi {
/**
* 是否验证签名
*
* @return
*/
boolean sign() default false;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy