liusheng
2024-09-18 907641e56c2085aaa81f267946dc3e3e9fca73e7
ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/IvrTaskTemplateScriptController.java
@@ -35,7 +35,7 @@
     * 查询随访任务模版问题话术库列表
     */
    @ApiOperation("查询随访任务模版问题话术库列表")
    @PreAuthorize("@ss.hasPermi('system:script:list')")
    //@PreAuthorize("@ss.hasPermi('system:script:list')")
    @PostMapping("/list")
    public TableDataInfo list(@RequestBody IvrTaskTemplateScript ivrTaskTemplateScript)
    {
@@ -48,7 +48,7 @@
     * 导出随访任务模版问题话术库列表
     */
    @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)
@@ -62,7 +62,7 @@
     * 获取随访任务模版问题话术库详细信息
     */
    @ApiOperation("获取随访任务模版问题话术库详细信息")
    @PreAuthorize("@ss.hasPermi('system:script:query')")
    //@PreAuthorize("@ss.hasPermi('system:script:query')")
    @GetMapping(value = "/getInfo/{ID}")
    public AjaxResult getInfo(@PathVariable("ID") Long ID)
    {
@@ -72,7 +72,7 @@
    /**
     * 新增随访任务模版问题话术库
     */
    @PreAuthorize("@ss.hasPermi('system:script:add')")
    //@PreAuthorize("@ss.hasPermi('system:script:add')")
    @ApiOperation("新增随访任务模版问题话术库")
    @PostMapping("/add")
    public AjaxResult add(@RequestBody IvrTaskTemplateScript ivrTaskTemplateScript)
@@ -83,7 +83,7 @@
    /**
     * 修改随访任务模版问题话术库
     */
    @PreAuthorize("@ss.hasPermi('system:script:edit')")
    //@PreAuthorize("@ss.hasPermi('system:script:edit')")
    @ApiOperation("修改随访任务模版问题话术库")
    @PostMapping("/edit")
    public AjaxResult edit(@RequestBody IvrTaskTemplateScript ivrTaskTemplateScript)
@@ -94,7 +94,7 @@
    /**
     * 删除随访任务模版问题话术库
     */
    @PreAuthorize("@ss.hasPermi('system:script:remove')")
    //@PreAuthorize("@ss.hasPermi('system:script:remove')")
    @ApiOperation("删除随访任务模版问题话术库")
   @GetMapping("/remove/{IDs}")
    public AjaxResult remove(@PathVariable Long[] IDs)