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

io.github.stylesmile.annotation.RequestParam Maven / Gradle / Ivy

package io.github.stylesmile.annotation;

import java.lang.annotation.*;

/**
 * 请求参数注解
 *
 * @author Stylesmile
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
//需要作用于方法参数上
@Target(ElementType.PARAMETER)
public @interface RequestParam {
    /**
     * 指定请求参数的key
     *
     * @return String
     */
    String value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy