v1.4.0
This commit is contained in:
parent
521367db70
commit
cc5f8cd58d
|
@ -15,7 +15,7 @@ import net.maku.framework.common.entity.BaseEntity;
|
|||
@TableName("sms_platform")
|
||||
public class SmsPlatformEntity extends BaseEntity {
|
||||
/**
|
||||
* 平台类型 0:阿里云 1:腾讯云
|
||||
* 平台类型 0:阿里云 1:腾讯云 2:七牛云 3:华为云
|
||||
*/
|
||||
private Integer platform;
|
||||
|
||||
|
|
|
@ -18,7 +18,15 @@ public enum SmsPlatformEnum {
|
|||
/**
|
||||
* 腾讯云
|
||||
*/
|
||||
QCLOUD(1);
|
||||
QCLOUD(1),
|
||||
/**
|
||||
* 七牛云
|
||||
*/
|
||||
QINIU(2),
|
||||
/**
|
||||
* 华为云
|
||||
*/
|
||||
HUAWEI(3);
|
||||
|
||||
private final int value;
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user