| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.smartor.domain.IvrLibaTemplateScript; |
| | | import com.smartor.domain.IvrLibaTemplateScriptVO; |
| | | import com.smartor.domain.IvrTask; |
| | | import com.smartor.domain.SendTaskVO; |
| | | import org.springframework.web.bind.annotation.PathVariable; |
| | | |
| | | /** |
| | | * 语音任务Service接口 |
| | | * |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-24 |
| | | */ |
| | | public interface IIvrTaskService |
| | | { |
| | | public interface IIvrTaskService { |
| | | /** |
| | | * 查询语音任务 |
| | | * |
| | | * |
| | | * @param taskid 语音任务主键 |
| | | * @return 语音任务 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 查询语音任务列表 |
| | | * |
| | | * |
| | | * @param ivrTask 语音任务 |
| | | * @return 语音任务集合 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 新增语音任务 |
| | | * |
| | | * |
| | | * @param ivrTask 语音任务 |
| | | * @return 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 修改语音任务 |
| | | * |
| | | * |
| | | * @param ivrTask 语音任务 |
| | | * @return 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 批量删除语音任务 |
| | | * |
| | | * |
| | | * @param taskids 需要删除的语音任务主键集合 |
| | | * @return 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 删除语音任务信息 |
| | | * |
| | | * |
| | | * @param taskid 语音任务主键 |
| | | * @return 结果 |
| | | */ |
| | | public int deleteIvrTaskByTaskid(Long taskid); |
| | | public Boolean deleteIvrTaskByTaskid(Long taskid); |
| | | |
| | | public List<IvrLibaTemplateScriptVO> getScriptInfoByCondition(Long taskid, Long patid); |
| | | |
| | | } |