| | |
| | | */ |
| | | //@PreAuthorize("@ss.hasPermi('system:tag:edit')") |
| | | @Log(title = "模板标签", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | @PostMapping("/edit") |
| | | public AjaxResult edit(@RequestBody SvyLibTemplateTag svyLibTemplateTag) |
| | | { |
| | | return toAjax(svyLibTemplateTagService.updateSvyLibTemplateTag(svyLibTemplateTag)); |
| | |
| | | */ |
| | | //@PreAuthorize("@ss.hasPermi('system:tag:remove')") |
| | | @Log(title = "模板标签", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | @GetMapping("/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) |
| | | { |
| | | return toAjax(svyLibTemplateTagService.deleteSvyLibTemplateTagByIds(ids)); |