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