All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fastchar.openapi.annotation.AFastAPITitle Maven / Gradle / Ivy

The newest version!
package com.fastchar.openapi.annotation;

import java.lang.annotation.*;

/**
 * 接口标题
 */
@Repeatable(AFastAPITitleRepeatable.class)
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
public @interface AFastAPITitle {

    /**
     * 接口名称
     * @return string
     */
    String value();

    /**
     * 接口描述
     * @return string
     */
    String desc() default "";


    /**
     * 请求方法
     * @return string
     */
    String method() default "post";

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy