This commit is contained in:
阿沐 2024-06-25 17:20:23 +08:00
parent 5667ed6be4
commit 5216d4b1c5
2 changed files with 68 additions and 63 deletions

View File

@ -1,4 +1,4 @@
package net.maku.message.entity; package net.maku.system.entity;
import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data; import lombok.Data;
@ -13,14 +13,19 @@ import net.maku.framework.mybatis.entity.BaseEntity;
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = false) @EqualsAndHashCode(callSuper = false)
@TableName("sms_platform") @TableName("sys_sms_config")
public class SmsPlatformEntity extends BaseEntity { public class SysSmsConfigEntity extends BaseEntity {
/** /**
* 平台类型 0阿里云 1腾讯云 2七牛云 3华为云 * 平台类型 0阿里云 1腾讯云 2七牛云 3华为云
*/ */
private Integer platform; private Integer platform;
/** /**
* 分组名称发送短信时可指定分组
*/
private String groupName;
/**
* 短信签名 * 短信签名
*/ */
private String signName; private String signName;