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;
|
}
|
}
|