liusheng
2024-09-18 907641e56c2085aaa81f267946dc3e3e9fca73e7
ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/SvyLibTemplateTagController.java
@@ -31,7 +31,7 @@
    /**
     * 查询模板标签列表
     */
    @PreAuthorize("@ss.hasPermi('system:tag:list')")
    //@PreAuthorize("@ss.hasPermi('system:tag:list')")
    @GetMapping("/list")
    public TableDataInfo list(SvyLibTemplateTag svyLibTemplateTag)
    {
@@ -43,7 +43,7 @@
    /**
     * 导出模板标签列表
     */
    @PreAuthorize("@ss.hasPermi('system:tag:export')")
    //@PreAuthorize("@ss.hasPermi('system:tag:export')")
    @Log(title = "模板标签", businessType = BusinessType.EXPORT)
    @PostMapping("/export")
    public void export(HttpServletResponse response, SvyLibTemplateTag svyLibTemplateTag)
@@ -56,7 +56,7 @@
    /**
     * 获取模板标签详细信息
     */
    @PreAuthorize("@ss.hasPermi('system:tag:query')")
    //@PreAuthorize("@ss.hasPermi('system:tag:query')")
    @GetMapping(value = "/{id}")
    public AjaxResult getInfo(@PathVariable("id") Long id)
    {
@@ -66,7 +66,7 @@
    /**
     * 新增模板标签
     */
    @PreAuthorize("@ss.hasPermi('system:tag:add')")
    //@PreAuthorize("@ss.hasPermi('system:tag:add')")
    @Log(title = "模板标签", businessType = BusinessType.INSERT)
    @PostMapping
    public AjaxResult add(@RequestBody SvyLibTemplateTag svyLibTemplateTag)
@@ -77,7 +77,7 @@
    /**
     * 修改模板标签
     */
    @PreAuthorize("@ss.hasPermi('system:tag:edit')")
    //@PreAuthorize("@ss.hasPermi('system:tag:edit')")
    @Log(title = "模板标签", businessType = BusinessType.UPDATE)
    @PutMapping
    public AjaxResult edit(@RequestBody SvyLibTemplateTag svyLibTemplateTag)
@@ -88,7 +88,7 @@
    /**
     * 删除模板标签
     */
    @PreAuthorize("@ss.hasPermi('system:tag:remove')")
    //@PreAuthorize("@ss.hasPermi('system:tag:remove')")
    @Log(title = "模板标签", businessType = BusinessType.DELETE)
   @DeleteMapping("/{ids}")
    public AjaxResult remove(@PathVariable Long[] ids)