com.obatis.core.annotation.request.ParamSign Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of obatis-web Show documentation
Show all versions of obatis-web Show documentation
obatis-web, apply web project
package com.obatis.core.annotation.request;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
/**
* api 接口参数需要签名注解
*/
@Target({ METHOD })
@Retention(RUNTIME)
@Documented
public @interface ParamSign {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy