zxl
2025-05-15 05d286d33b25ea7e317eae2861bb765ac11a927d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package cn.lili.modules.system.entity.dto;
 
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * 短信配置
 * 这里在前台不做调整,方便客户直接把服务商的内容配置在我们平台
 *
 * @author Chopper
 * @since 2020/11/30 15:23
 */
@Data
public class SmsSetting implements Serializable {
 
    /**
     * 类型
     */
    private String type;
    /**
     * 是否测试模式
     */
    private Boolean isTestModel;
    /**
     * 登录短信模板CODE
     */
    private String loginTemplateCode;
    /**
     * 注册短信模板CODE
     */
    private String registerTemplateCode;
    /**
     * 找回密码短信模板CODE
     */
    private String findPasswordTemplateCode;
    /**
     * 设置密码短信模板CODE
     */
    private String walletPasswordTemplateCode;
    /**
     * 支付密码短信模板CODE
     */
    private String payPasswordTemplateCode;
 
    /**
     * key
     */
    private String accessKeyId;
    /**
     * 密钥
     */
    private String accessSecret;
    /**
     * 签名
     */
    private String signName;
 
 
    /**
     * 腾讯云 用户的 SecretId
     */
    String tencentSecretId;
    /**
     * 腾讯云 用户的 SecretKey
     */
    String tencentSecretKey;
    /* 短信应用ID: 短信SdkAppId在 [短信控制台] 添加应用后生成的实际SdkAppId,示例如1400006666 */
    String tencentSdkAppId;
    /* 短信签名内容: 使用 UTF-8 编码,必须填写已审核通过的签名 */
    String tencentSignName;
 
    /**
     * 华为 APP_Key
     */
    String huaweiAppKey;
    /**
     * 华为 APP_Secret
     */
    String huaweiAppSecret;
 
    /**
     * 国内短信签名通道号或国际/港澳台短信通道号
     */
    String huaweiSender;
    /**
     * 签名名称
     */
    String huaweiSignature;
}