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

com.hn.doc.xyj.annotation.Api Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
package com.hn.doc.xyj.annotation;

import java.lang.annotation.*;

@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Api {
    /**
     *  返回数据类型
     *  @return Class
     */
    Class result() default void.class;

    /**
     *  方法描述
     * @return {String}
     */
    String value() default "";

    /**
     * 接口描述
     * @return {String}
     */
    String description() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy