com.yupaits.commons.annotation.SwaggerIgnore Maven / Gradle / Ivy
package com.yupaits.commons.annotation;
import java.lang.annotation.*;
/**
* 该注解用于标注不需要生成swagger接口文档的类或者方法
* @author yupaits
* @date 2019/2/27
*/
@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface SwaggerIgnore {
}