diff --git a/maku-boot-module/maku-module-message/src/main/java/net/maku/message/vo/SmsPlatformVO.java b/maku-boot-system/src/main/java/net/maku/system/vo/SysSmsConfigVO.java similarity index 81% rename from maku-boot-module/maku-module-message/src/main/java/net/maku/message/vo/SmsPlatformVO.java rename to maku-boot-system/src/main/java/net/maku/system/vo/SysSmsConfigVO.java index e192ed2..172a22c 100644 --- a/maku-boot-module/maku-module-message/src/main/java/net/maku/message/vo/SmsPlatformVO.java +++ b/maku-boot-system/src/main/java/net/maku/system/vo/SysSmsConfigVO.java @@ -1,4 +1,4 @@ -package net.maku.message.vo; +package net.maku.system.vo; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.v3.oas.annotations.media.Schema; @@ -9,22 +9,25 @@ import java.io.Serializable; import java.time.LocalDateTime; /** - * 短信平台 + * 短信配置 * * @author 阿沐 babamu@126.com * MAKU */ @Data -@Schema(description = "短信平台") -public class SmsPlatformVO implements Serializable { +@Schema(description = "短信配置") +public class SysSmsConfigVO implements Serializable { private static final long serialVersionUID = 1L; @Schema(description = "id") private Long id; - @Schema(description = "平台类型 0:阿里云 1:腾讯云") + @Schema(description = "平台类型") private Integer platform; + @Schema(description = "分组名称,发送短信时,可指定分组") + private String groupName; + @Schema(description = "短信签名") private String signName;