com.fastchar.openapi.annotation.AFastAPIGroup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastchar-openapi Show documentation
Show all versions of fastchar-openapi Show documentation
FastChar-OpenAPI is build openapi3.0 doc tool package.
The newest version!
package com.fastchar.openapi.annotation;
import java.lang.annotation.*;
/**
* 接口分组
*/
@Repeatable(AFastAPIGroupRepeatable.class)
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD, ElementType.TYPE})
public @interface AFastAPIGroup {
/**
* 分组名称
* @return string
*/
String value();
/**
* 排序索引
* @return int
*/
int index() default 0;
}