| | |
| | | */ |
| | | //@PreAuthorize("@ss.hasPermi('system:tag:edit')") |
| | | @Log(title = "问题话术标签库", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | @PostMapping("/edit") |
| | | public AjaxResult edit(@RequestBody SvyLibScriptTag svyLibScriptTag) |
| | | { |
| | | return toAjax(svyLibScriptTagService.updateSvyLibScriptTag(svyLibScriptTag)); |
| | |
| | | */ |
| | | //@PreAuthorize("@ss.hasPermi('system:tag:remove')") |
| | | @Log(title = "问题话术标签库", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | @GetMapping("/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) |
| | | { |
| | | return toAjax(svyLibScriptTagService.deleteSvyLibScriptTagByIds(ids)); |