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 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;
|
||||||
Loading…
Reference in New Issue
Block a user