package org.springblade.common.utils.sms;
|
|
import java.util.Date;
|
|
/**
|
* 状态报告对象 status_report
|
*
|
* @author chen
|
* @date 2021-06-24
|
*/
|
public class StatusReport
|
{
|
|
/**
|
* 接收号码
|
*/
|
private String phones;
|
|
/**
|
* 发送类型(0相同内容,1不同内容,2完美发送)
|
*/
|
private int type;
|
|
/**
|
* 发送时间-起始
|
*/
|
private String sendTimeStart;
|
|
/**
|
* 发送时间-结束
|
*/
|
private String sendTimeEnd;
|
|
/**
|
* 发送类型
|
*/
|
private int parentType;
|
|
/**
|
* 创建者
|
*/
|
private String sopCreateBy;
|
|
public String getPhones() {
|
return phones;
|
}
|
|
public void setPhones(String phones) {
|
this.phones = phones;
|
}
|
|
public int getType() {
|
return type;
|
}
|
|
public void setType(int type) {
|
this.type = type;
|
}
|
|
public String getSendTimeStart() {
|
return sendTimeStart;
|
}
|
|
public void setSendTimeStart(String sendTimeStart) {
|
this.sendTimeStart = sendTimeStart;
|
}
|
|
public String getSendTimeEnd() {
|
return sendTimeEnd;
|
}
|
|
public void setSendTimeEnd(String sendTimeEnd) {
|
this.sendTimeEnd = sendTimeEnd;
|
}
|
|
public int getParentType() {
|
return parentType;
|
}
|
|
public void setParentType(int parentType) {
|
this.parentType = parentType;
|
}
|
|
public String getSopCreateBy() {
|
return sopCreateBy;
|
}
|
|
public void setSopCreateBy(String sopCreateBy) {
|
this.sopCreateBy = sopCreateBy;
|
}
|
}
|