From fb0529a7fe9f17d7070e7d72f2f63c941af6fd87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=BF=E6=B2=90?= Date: Tue, 25 Jun 2024 17:18:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/net/maku/message/query/SmsLogQuery.java | 23 ---------------------- .../java/net/maku/system/query/SysSmsLogQuery.java | 23 ++++++++++++++++++++++ 2 files changed, 23 insertions(+), 23 deletions(-) delete mode 100644 maku-boot-module/maku-module-message/src/main/java/net/maku/message/query/SmsLogQuery.java create mode 100644 maku-boot-system/src/main/java/net/maku/system/query/SysSmsLogQuery.java diff --git a/maku-boot-module/maku-module-message/src/main/java/net/maku/message/query/SmsLogQuery.java b/maku-boot-module/maku-module-message/src/main/java/net/maku/message/query/SmsLogQuery.java deleted file mode 100644 index c39453a..0000000 --- a/maku-boot-module/maku-module-message/src/main/java/net/maku/message/query/SmsLogQuery.java +++ /dev/null @@ -1,23 +0,0 @@ -package net.maku.message.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 SmsLogQuery extends Query { - @Schema(description = "平台ID") - private Long platformId; - - @Schema(description = "平台类型") - private Integer platform; - -} \ No newline at end of file diff --git a/maku-boot-system/src/main/java/net/maku/system/query/SysSmsLogQuery.java b/maku-boot-system/src/main/java/net/maku/system/query/SysSmsLogQuery.java new file mode 100644 index 0000000..5b09d02 --- /dev/null +++ b/maku-boot-system/src/main/java/net/maku/system/query/SysSmsLogQuery.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 SysSmsLogQuery extends Query { + @Schema(description = "手机号") + private String mobile; + + @Schema(description = "平台类型") + private Integer platform; + +} \ No newline at end of file