From 7da220128ca393de915efd347cc4b1b194a78a88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=BF=E6=B2=90?= Date: Tue, 25 Jun 2024 17:18:31 +0800 Subject: [PATCH] =?UTF-8?q?=E7=9F=AD=E4=BF=A1=E9=85=8D=E7=BD=AE=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../net/maku/system/query/SysSmsConfigQuery.java | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 maku-boot-system/src/main/java/net/maku/system/query/SysSmsConfigQuery.java diff --git a/maku-boot-system/src/main/java/net/maku/system/query/SysSmsConfigQuery.java b/maku-boot-system/src/main/java/net/maku/system/query/SysSmsConfigQuery.java new file mode 100644 index 0000000..4f51a4c --- /dev/null +++ b/maku-boot-system/src/main/java/net/maku/system/query/SysSmsConfigQuery.java @@ -0,0 +1,23 @@ +package net.maku.system.query; + +import io.swagger.v3.oas.annotations.media.Schema; +import lombok.Data; +import lombok.EqualsAndHashCode; +import net.maku.framework.common.query.Query; + +/** + * 短信配置查询 + * + * @author 阿沐 babamu@126.com + */ +@Data +@EqualsAndHashCode(callSuper = false) +@Schema(description = "短信配置查询") +public class SysSmsConfigQuery extends Query { + @Schema(description = "平台类型") + private Integer platform; + + @Schema(description = "分组名称") + private String groupName; + +} \ No newline at end of file