
org.tinygroup.springutil.annotation.MethodParamName Maven / Gradle / Ivy
package org.tinygroup.springutil.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;
/**
* 方法参数名称
* @author renhui
*
*/
@Target(ElementType.PARAMETER)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface MethodParamName {
/**
* 指定方法参数名
*/
String value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy