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