admin
2025-02-20 f537abe9f3646c739beaf15076246a2f71a347e9
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
package com.yeshi.buwan.dto.config;
 
import org.yeshi.utils.annotation.Map;
 
public class TencentSMSConfig {
    @Map("app_id")
    private String appId;
    @Map("app_key")
    private String appKey;
    @Map("sign")
    private String sign;
    @Map("content_bind")
    private String contentBind;
 
 
    public String getAppId() {
        return appId;
    }
 
    public void setAppId(String appId) {
        this.appId = appId;
    }
 
    public String getAppKey() {
        return appKey;
    }
 
    public void setAppKey(String appKey) {
        this.appKey = appKey;
    }
 
    public String getSign() {
        return sign;
    }
 
    public void setSign(String sign) {
        this.sign = sign;
    }
 
    public String getContentBind() {
        return contentBind;
    }
 
    public void setContentBind(String contentBind) {
        this.contentBind = contentBind;
    }
}