From 48fcaa02a8224034a307b4e6b7843121eee9b683 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=BF=E6=B2=90?= Date: Tue, 25 Jun 2024 17:17:47 +0800 Subject: [PATCH] =?UTF-8?q?=E7=9F=AD=E4=BF=A1=E5=8F=91=E9=80=81VO?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/net/maku/system/vo/SysSmsSendVO.java | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 maku-boot-system/src/main/java/net/maku/system/vo/SysSmsSendVO.java diff --git a/maku-boot-system/src/main/java/net/maku/system/vo/SysSmsSendVO.java b/maku-boot-system/src/main/java/net/maku/system/vo/SysSmsSendVO.java new file mode 100644 index 0000000..b9f26a4 --- /dev/null +++ b/maku-boot-system/src/main/java/net/maku/system/vo/SysSmsSendVO.java @@ -0,0 +1,30 @@ +package net.maku.system.vo; + +import io.swagger.v3.oas.annotations.media.Schema; +import lombok.Data; + +import java.io.Serializable; + +/** + * 短信发送 + * + * @author 阿沐 babamu@126.com + */ +@Data +@Schema(description = "短信发送") +public class SysSmsSendVO implements Serializable { + private static final long serialVersionUID = 1L; + + @Schema(description = "id") + private Long id; + + @Schema(description = "手机号") + private String mobile; + + @Schema(description = "参数Key") + private String paramKey; + + @Schema(description = "参数Value") + private String paramValue; + +} \ No newline at end of file