package com.smartor.domain;
|
|
import java.util.Date;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
import com.ruoyi.common.annotation.Excel;
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
/**
|
* 语音任务短信对象 ivr_tasksms
|
*
|
* @author smartor
|
* @date 2023-03-24
|
*/
|
public class IvrTasksms extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** */
|
private Long id;
|
|
/** 任务编号 */
|
@Excel(name = " 任务编号 ")
|
private Long taskid;
|
|
/** 类型0.不使用 1.任务前 2.任务后 */
|
@Excel(name = " 类型0.不使用 1.任务前 2.任务后 ")
|
private Long type;
|
|
/** 短信模板主键 */
|
@Excel(name = " 短信模板主键 ")
|
private Long smstemplateid;
|
|
/** 电话状态主键 */
|
@Excel(name = " 电话状态主键 ")
|
private String phonestatusid;
|
|
/** 短信模板名称 */
|
@Excel(name = " 短信模板名称 ")
|
private String smstemplatename;
|
|
/** 电话状态名称 */
|
@Excel(name = " 电话状态名称 ")
|
private String phonestatusname;
|
|
/** */
|
@Excel(name = " ")
|
private Long isdel;
|
|
/** */
|
@Excel(name = " ")
|
private String content;
|
|
/** 标签编号 */
|
@Excel(name = " 标签编号 ")
|
private Long tagid;
|
|
/** 删除标记 */
|
private String delFlag;
|
|
/** 上传标记 */
|
@Excel(name = " 上传标记 ")
|
private Long isupload;
|
|
/** 上传时间 */
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
@Excel(name = " 上传时间 ", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date uploadTime;
|
|
/** 机构ID */
|
@Excel(name = " 机构ID ")
|
private String orgid;
|
|
public void setId(Long id)
|
{
|
this.id = id;
|
}
|
|
public Long getId()
|
{
|
return id;
|
}
|
public void setTaskid(Long taskid)
|
{
|
this.taskid = taskid;
|
}
|
|
public Long getTaskid()
|
{
|
return taskid;
|
}
|
public void setType(Long type)
|
{
|
this.type = type;
|
}
|
|
public Long getType()
|
{
|
return type;
|
}
|
public void setSmstemplateid(Long smstemplateid)
|
{
|
this.smstemplateid = smstemplateid;
|
}
|
|
public Long getSmstemplateid()
|
{
|
return smstemplateid;
|
}
|
public void setPhonestatusid(String phonestatusid)
|
{
|
this.phonestatusid = phonestatusid;
|
}
|
|
public String getPhonestatusid()
|
{
|
return phonestatusid;
|
}
|
public void setSmstemplatename(String smstemplatename)
|
{
|
this.smstemplatename = smstemplatename;
|
}
|
|
public String getSmstemplatename()
|
{
|
return smstemplatename;
|
}
|
public void setPhonestatusname(String phonestatusname)
|
{
|
this.phonestatusname = phonestatusname;
|
}
|
|
public String getPhonestatusname()
|
{
|
return phonestatusname;
|
}
|
public void setIsdel(Long isdel)
|
{
|
this.isdel = isdel;
|
}
|
|
public Long getIsdel()
|
{
|
return isdel;
|
}
|
public void setContent(String content)
|
{
|
this.content = content;
|
}
|
|
public String getContent()
|
{
|
return content;
|
}
|
public void setTagid(Long tagid)
|
{
|
this.tagid = tagid;
|
}
|
|
public Long getTagid()
|
{
|
return tagid;
|
}
|
public void setDelFlag(String delFlag)
|
{
|
this.delFlag = delFlag;
|
}
|
|
public String getDelFlag()
|
{
|
return delFlag;
|
}
|
public void setIsupload(Long isupload)
|
{
|
this.isupload = isupload;
|
}
|
|
public Long getIsupload()
|
{
|
return isupload;
|
}
|
public void setUploadTime(Date uploadTime)
|
{
|
this.uploadTime = uploadTime;
|
}
|
|
public Date getUploadTime()
|
{
|
return uploadTime;
|
}
|
public void setOrgid(String orgid)
|
{
|
this.orgid = orgid;
|
}
|
|
public String getOrgid()
|
{
|
return orgid;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("taskid", getTaskid())
|
.append("type", getType())
|
.append("smstemplateid", getSmstemplateid())
|
.append("phonestatusid", getPhonestatusid())
|
.append("smstemplatename", getSmstemplatename())
|
.append("phonestatusname", getPhonestatusname())
|
.append("isdel", getIsdel())
|
.append("content", getContent())
|
.append("tagid", getTagid())
|
.append("delFlag", getDelFlag())
|
.append("updateBy", getUpdateBy())
|
.append("updateTime", getUpdateTime())
|
.append("createBy", getCreateBy())
|
.append("createTime", getCreateTime())
|
.append("isupload", getIsupload())
|
.append("uploadTime", getUploadTime())
|
.append("orgid", getOrgid())
|
.toString();
|
}
|
}
|