新增表单注解

This commit is contained in:
wanggeng 2021-09-21 19:16:29 +08:00
parent 20f821798d
commit 5b9b3e2372

View File

@ -0,0 +1,19 @@
package ink.wgink.annotation.rpc.rest.params;
import java.lang.annotation.*;
/**
* @ClassName: RemoteFormParams
* @Description: 表单参数
* @Author: wanggeng
* @Date: 2021/9/21 7:15 下午
* @Version: 1.0
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.PARAMETER})
public @interface RemoteFormParams {
String value();
}