package org.springblade.common.utils.sms;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
/**
|
* 完美发送任务对象 perfect_send
|
*
|
* @author chen
|
* @date 2021-06-23
|
*/
|
public class PerfectSend
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 通知时间间隔 */
|
private String timeInterval;
|
|
/** 通知次数 */
|
private int sendNum;
|
|
/** 通知内容 */
|
private String sendContent;
|
|
/** 发送用户 */
|
private String phones;
|
|
/** 优先级 */
|
private Integer priority;
|
|
/** 创建者 */
|
private String createBy;
|
|
public String getTimeInterval() {
|
return timeInterval;
|
}
|
|
public void setTimeInterval(String timeInterval) {
|
this.timeInterval = timeInterval;
|
}
|
|
public int getSendNum() {
|
return sendNum;
|
}
|
|
public void setSendNum(int sendNum) {
|
this.sendNum = sendNum;
|
}
|
|
public String getSendContent() {
|
return sendContent;
|
}
|
|
public void setSendContent(String sendContent) {
|
this.sendContent = sendContent;
|
}
|
|
public String getPhones() {
|
return phones;
|
}
|
|
public void setPhones(String phones) {
|
this.phones = phones;
|
}
|
|
public Integer getPriority() {
|
return priority;
|
}
|
|
public void setPriority(Integer priority) {
|
this.priority = priority;
|
}
|
|
public String getCreateBy() {
|
return createBy;
|
}
|
|
public void setCreateBy(String createBy) {
|
this.createBy = createBy;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("timeInterval", getTimeInterval())
|
.append("sendNum", getSendNum())
|
.append("sendContent", getSendContent())
|
.append("createBy", getCreateBy())
|
.toString();
|
}
|
}
|