From 5b9b3e2372f07c960de502491965b06f63f082ab Mon Sep 17 00:00:00 2001 From: wanggeng <450292408@qq.com> Date: Tue, 21 Sep 2021 19:16:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E8=A1=A8=E5=8D=95=E6=B3=A8?= =?UTF-8?q?=E8=A7=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../rpc/rest/params/RemoteFormParams.java | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 basic-annotation/src/main/java/ink/wgink/annotation/rpc/rest/params/RemoteFormParams.java diff --git a/basic-annotation/src/main/java/ink/wgink/annotation/rpc/rest/params/RemoteFormParams.java b/basic-annotation/src/main/java/ink/wgink/annotation/rpc/rest/params/RemoteFormParams.java new file mode 100644 index 00000000..f22d9173 --- /dev/null +++ b/basic-annotation/src/main/java/ink/wgink/annotation/rpc/rest/params/RemoteFormParams.java @@ -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(); + +}