yxh
2024-12-18 e34058fd63e1342c82879074807d3795a0599383
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
package com.example.smssend.domain;
 
public class SendMagParam {
    //发送类型
    private String type;
 
    //电话号码
    private String phone;
 
    //发送内容
    private String content;
 
    //模板code 例如 :  SMS_461860582
    private String tmpCode;
 
    private String url;
 
    private String openid;
 
    private String idcard;
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getPhone() {
        return phone;
    }
 
    public void setPhone(String phone) {
        this.phone = phone;
    }
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    public String getTmpCode() {
        return tmpCode;
    }
 
    public void setTmpCode(String tmpCode) {
        this.tmpCode = tmpCode;
    }
 
    public String getUrl() {
        return url;
    }
 
    public void setUrl(String url) {
        this.url = url;
    }
 
    public String getOpenid() {
        return openid;
    }
 
    public void setOpenid(String openid) {
        this.openid = openid;
    }
 
    public String getIdcard() {
        return idcard;
    }
 
    public void setIdcard(String idcard) {
        this.idcard = idcard;
    }
}