admin
2019-04-15 eccfb59bb0347731afdaf71b3422848649e44b26
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
package com.yeshi.fanli.entity.config;
 
import org.yeshi.utils.annotation.Map;
 
/**
 * 验证码配置
 * 
 * @author Administrator
 *
 */
public class SMSConfig {
    @Map("sms_login")
    private String smsLogin;
    @Map("sms_bind")
    private String smsBind;
    @Map("sms_extract")
    private String smsExtract;
    @Map("sms_extract_success")
    private String smsExtractSuccess;
    @Map("sms_extract_fail")
    private String smsExtractFail;
    @Map("sms_appid")
    private String smsAppId;
    @Map("sms_appkey")
    private String smsAppKey;
    @Map("sms_sign")
    private String smsSign;
    @Map("sms_aliyun_accesskey_id")
    private String aliyunAppId;
    @Map("sms_aliyun_accesskey_secret")
    private String aliyunAppSecret;
    @Map("sms_aliyun_login_template_code")
    private String aliyunLoginTemplatecode;// 阿里云登录验证码模板
 
    public String getAliyunLoginTemplatecode() {
        return aliyunLoginTemplatecode;
    }
 
    public void setAliyunLoginTemplatecode(String aliyunLoginTemplatecode) {
        this.aliyunLoginTemplatecode = aliyunLoginTemplatecode;
    }
 
    public String getAliyunAppId() {
        return aliyunAppId;
    }
 
    public void setAliyunAppId(String aliyunAppId) {
        this.aliyunAppId = aliyunAppId;
    }
 
    public String getAliyunAppSecret() {
        return aliyunAppSecret;
    }
 
    public void setAliyunAppSecret(String aliyunAppSecret) {
        this.aliyunAppSecret = aliyunAppSecret;
    }
 
    public String getSmsExtractSuccess() {
        return smsExtractSuccess;
    }
 
    public void setSmsExtractSuccess(String smsExtractSuccess) {
        this.smsExtractSuccess = smsExtractSuccess;
    }
 
    public String getSmsExtractFail() {
        return smsExtractFail;
    }
 
    public void setSmsExtractFail(String smsExtractFail) {
        this.smsExtractFail = smsExtractFail;
    }
 
    public String getSmsAppId() {
        return smsAppId;
    }
 
    public void setSmsAppId(String smsAppId) {
        this.smsAppId = smsAppId;
    }
 
    public String getSmsAppKey() {
        return smsAppKey;
    }
 
    public void setSmsAppKey(String smsAppKey) {
        this.smsAppKey = smsAppKey;
    }
 
    public String getSmsSign() {
        return smsSign;
    }
 
    public void setSmsSign(String smsSign) {
        this.smsSign = smsSign;
    }
 
    public String getSmsLogin() {
        return smsLogin;
    }
 
    public void setSmsLogin(String smsLogin) {
        this.smsLogin = smsLogin;
    }
 
    public String getSmsBind() {
        return smsBind;
    }
 
    public void setSmsBind(String smsBind) {
        this.smsBind = smsBind;
    }
 
    public String getSmsExtract() {
        return smsExtract;
    }
 
    public void setSmsExtract(String smsExtract) {
        this.smsExtract = smsExtract;
    }
 
}