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

com.github.liuanxin.api.annotation.ApiMethod Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
package com.github.liuanxin.api.annotation;

import java.lang.annotation.*;

/** 接口方法, 标注在 方法 上 */
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface ApiMethod {
    /** 接口标题 */
    String title();
    /** 接口详细说明 */
    String desc() default "";
    /** 开发者及联系方式 */
    String develop() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy