| | |
| | | * 查询随访任务模版问题话术库列表 |
| | | */ |
| | | @ApiOperation("查询随访任务模版问题话术库列表") |
| | | @PreAuthorize("@ss.hasPermi('system:script:list')") |
| | | //@PreAuthorize("@ss.hasPermi('system:script:list')") |
| | | @PostMapping("/list") |
| | | public TableDataInfo list(@RequestBody IvrTaskTemplateScript ivrTaskTemplateScript) |
| | | { |
| | |
| | | * 导出随访任务模版问题话术库列表 |
| | | */ |
| | | @ApiOperation("导出随访任务模版问题话术库列表") |
| | | @PreAuthorize("@ss.hasPermi('system:script:export')") |
| | | //@PreAuthorize("@ss.hasPermi('system:script:export')") |
| | | @Log(title = "随访任务模版问题话术库", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrTaskTemplateScript ivrTaskTemplateScript) |
| | |
| | | * 获取随访任务模版问题话术库详细信息 |
| | | */ |
| | | @ApiOperation("获取随访任务模版问题话术库详细信息") |
| | | @PreAuthorize("@ss.hasPermi('system:script:query')") |
| | | //@PreAuthorize("@ss.hasPermi('system:script:query')") |
| | | @GetMapping(value = "/getInfo/{ID}") |
| | | public AjaxResult getInfo(@PathVariable("ID") Long ID) |
| | | { |
| | |
| | | /** |
| | | * 新增随访任务模版问题话术库 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:script:add')") |
| | | //@PreAuthorize("@ss.hasPermi('system:script:add')") |
| | | @ApiOperation("新增随访任务模版问题话术库") |
| | | @PostMapping("/add") |
| | | public AjaxResult add(@RequestBody IvrTaskTemplateScript ivrTaskTemplateScript) |
| | |
| | | /** |
| | | * 修改随访任务模版问题话术库 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:script:edit')") |
| | | //@PreAuthorize("@ss.hasPermi('system:script:edit')") |
| | | @ApiOperation("修改随访任务模版问题话术库") |
| | | @PostMapping("/edit") |
| | | public AjaxResult edit(@RequestBody IvrTaskTemplateScript ivrTaskTemplateScript) |
| | |
| | | /** |
| | | * 删除随访任务模版问题话术库 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:script:remove')") |
| | | //@PreAuthorize("@ss.hasPermi('system:script:remove')") |
| | | @ApiOperation("删除随访任务模版问题话术库") |
| | | @GetMapping("/remove/{IDs}") |
| | | public AjaxResult remove(@PathVariable Long[] IDs) |