| | |
| | | /** |
| | | * 查询AI外呼流程节点分支列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrflownodebranch:list')") |
| | | //@PreAuthorize("@ss.hasPermi('smartor:ivrflownodebranch:list')") |
| | | @PostMapping("/list") |
| | | public TableDataInfo list(@RequestBody IvrSceneFlownodebranch ivrSceneFlownodebranch) |
| | | { |
| | |
| | | /** |
| | | * 导出AI外呼流程节点分支列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrflownodebranch:export')") |
| | | //@PreAuthorize("@ss.hasPermi('smartor:ivrflownodebranch:export')") |
| | | @Log(title = "AI外呼流程节点分支", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrSceneFlownodebranch ivrSceneFlownodebranch) |
| | |
| | | /** |
| | | * 获取AI外呼流程节点分支详细信息 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrflownodebranch:query')") |
| | | //@PreAuthorize("@ss.hasPermi('smartor:ivrflownodebranch:query')") |
| | | @GetMapping(value = "/{branchid}") |
| | | public AjaxResult getInfo(@PathVariable("branchid") Long branchid) |
| | | { |
| | |
| | | /** |
| | | * 新增AI外呼流程节点分支 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrflownodebranch:add')") |
| | | //@PreAuthorize("@ss.hasPermi('smartor:ivrflownodebranch:add')") |
| | | @Log(title = "AI外呼流程节点分支", businessType = BusinessType.INSERT) |
| | | @PostMapping("/add") |
| | | public AjaxResult add(@RequestBody IvrSceneFlownodebranch ivrSceneFlownodebranch) |
| | |
| | | /** |
| | | * 修改AI外呼流程节点分支 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrflownodebranch:edit')") |
| | | //@PreAuthorize("@ss.hasPermi('smartor:ivrflownodebranch:edit')") |
| | | @Log(title = "AI外呼流程节点分支", businessType = BusinessType.UPDATE) |
| | | @PostMapping("/edit") |
| | | public AjaxResult edit(@RequestBody IvrSceneFlownodebranch ivrSceneFlownodebranch) |
| | |
| | | /** |
| | | * 删除AI外呼流程节点分支 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrflownodebranch:remove')") |
| | | //@PreAuthorize("@ss.hasPermi('smartor:ivrflownodebranch:remove')") |
| | | @Log(title = "AI外呼流程节点分支", businessType = BusinessType.DELETE) |
| | | @GetMapping("/remove/{branchids}") |
| | | public AjaxResult remove(@PathVariable Long[] branchids) |