JSD-8493 开源任务材料
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

60 lines
1.0 KiB

package com.fr.plugin.ymrt.sms.eucp.inter.http.v1.dto.request;
import com.fr.plugin.ymrt.sms.eucp.inter.framework.dto.CustomSmsIdAndMobile;
/**
* @Author fr.open
* @Date 2020/9/15
* @Description
**/
public class SmsShortLinkBatchRequest extends SmsBaseRequest {
private static final long serialVersionUID = 1L;
private String url;
private String shortLinkRule;
/**
* 手机号与自定义SmsId
*/
private CustomSmsIdAndMobile[] smses;
/**
* 短信内容
*/
private String content;
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public CustomSmsIdAndMobile[] getSmses() {
return smses;
}
public void setSmses(CustomSmsIdAndMobile[] smses) {
this.smses = smses;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public String getShortLinkRule() {
return shortLinkRule;
}
public void setShortLinkRule(String shortLinkRule) {
this.shortLinkRule = shortLinkRule;
}
}