yujian
2019-01-22 88b54772dbcf5ecab1e2316e4e4626ac901b8908
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
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;
 
    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;
    }
 
}