com.github.easilyuse.core.annotation.HttpReqBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easily-http Show documentation
Show all versions of easily-http Show documentation
Easy implementation of http client remote calls through annotations
The newest version!
package com.github.easilyuse.core.annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
*
*
* Title:HttpReqBean
*
*
* Description:当方法请求参数为一个对象时,可以使用该注解,该注解不能和HttpReqListParam共存
*
*
* @author linyb
*/
@Target({ ElementType.PARAMETER })
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface HttpReqBean {
String value() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy