fq
zj
2025-06-13 08ea05f85c9dd77834e56a2b912b2c43ac8888cd
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
package smsbao.sender;
 
/**
 * 
 * <p>
 * Description: 短信消息类
 * </p>
 */
public class SmsMessage {
    /**
     * 要发送的电话号码
     */
    private String mobile;
 
    /**
     * 要发送的短信内容
     */
    private String content;
 
    private boolean inter = true;
 
    /**
     * 无参构造函数
     */
    public SmsMessage() {
    }
 
    /**
     * 构造函数
     * 
     * @param phones  电话号码
     * @param content 短信内容
     */
    public SmsMessage(String mobile, String content) {
        this.mobile = mobile;
        this.content = content;
    }
 
    public String getMobile() {
        return mobile;
    }
 
    public void setMobile(String mobile) {
        this.mobile = mobile;
    }
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    public boolean getInter() {
        return inter;
    }
 
    public void setInter(boolean inter) {
        this.inter = inter;
    }
 
}