/*API接口 callid// sendname// 发送人 phone// 手机号 sex// age// 年龄 sfzh// 身份证号 addr// 地址 senderdetail// inserttype// taskid// 任务ID templateid// templatename// 模板名 senddate// 发送日期 sendlimitabegin// 上午开始发送时间限制 sendlimitaend// 上午结束发送时间限制 sendlimitpbegin// 下午开始发送时间限制 sendlimitpend// 下午结束发送时间限制 sendlimitnbegin// 晚上开始发送时间限制 sendlimitnend// 晚上结束发送时间限制 sendstate// 发送状态 senduuid// 发送UUID result// 结果 finishtime// 完成时间 userid// 用户ID username// 用户名 outbounduuid// recordid// 就诊记录编号 recallcount// 重拨总数 exrecallcount// 当前重拨次数 pulltime// 拉取时间 bqsms// bhsms// deptcode// labelstatus// del_flag// 删除标记 update_by// 更新人 update_time//更新时间 create_by// 创建人 create_time// 创建时间 isupload// 上传标记 upload_time// 上传时间 orgid// 机构ID pid//父ID guid//GUID */ import request from '@/utils/request' export function slavelistivr_taskcall(query) { return request({ url: 'proc/smartor/entity/ivr/ivr_taskcall/slavelist', method: 'get', params: query }) } /* 功能: 读取列表信息 参数:query 指定查询参数 */ export function listivr_taskcall(query) { return request({ url: 'proc/smartor/entity/ivr/ivr_taskcall/list', method: 'get', params: query }) } /* 功能: 根据id读取指定对象信息 参数:query 指定查询参数 */ export function getivr_taskcall(callid) { return request({ url: 'proc/smartor/entity/ivr/ivr_taskcall/' + callid, method: 'get' }) } /* 功能: 增加对象 参数:data 对象数据 */ export function addivr_taskcall(data) { return request({ url: 'proc/smartor/entity/ivr/ivr_taskcall/add', method: 'post', data: data }) } /* 功能: 更新对象 参数:data 对象数据 */ export function updateivr_taskcall(data) { return request({ url: 'proc/smartor/entity/ivr/ivr_taskcall/update', method: 'put', data: data }) } /* 功能: 删除对象 参数:objid 对象ID */ export function delivr_taskcall(callid) { return request({ url: 'proc/smartor/entity/ivr/ivr_taskcall/del/' +callid, method: 'delete' }) }