liusheng
2024-09-18 907641e56c2085aaa81f267946dc3e3e9fca73e7
ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/HeLibraryTagController.java
@@ -39,7 +39,7 @@
    /**
     * 查询指标标签列表
     */
    @PreAuthorize("@ss.hasPermi('system:tag:list')")
    //@PreAuthorize("@ss.hasPermi('system:tag:list')")
    @GetMapping("/list")
    public TableDataInfo list(HeLibraryTag heLibraryTag) {
        startPage();
@@ -50,7 +50,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, HeLibraryTag heLibraryTag) {
@@ -62,7 +62,7 @@
    /**
     * 获取指标标签详细信息
     */
    @PreAuthorize("@ss.hasPermi('system:tag:query')")
    //@PreAuthorize("@ss.hasPermi('system:tag:query')")
    @GetMapping(value = "/{id}")
    public AjaxResult getInfo(@PathVariable("id") Long id) {
        return success(heLibraryTagService.selectHeLibraryTagById(id));
@@ -71,7 +71,7 @@
    /**
     * 新增指标标签
     */
    @PreAuthorize("@ss.hasPermi('system:tag:add')")
    //@PreAuthorize("@ss.hasPermi('system:tag:add')")
    @Log(title = "指标标签", businessType = BusinessType.INSERT)
    @PostMapping
    public AjaxResult add(@RequestBody HeLibraryTag heLibraryTag) {
@@ -81,7 +81,7 @@
    /**
     * 修改指标标签
     */
    @PreAuthorize("@ss.hasPermi('system:tag:edit')")
    //@PreAuthorize("@ss.hasPermi('system:tag:edit')")
    @Log(title = "指标标签", businessType = BusinessType.UPDATE)
    @PutMapping
    public AjaxResult edit(@RequestBody HeLibraryTag heLibraryTag) {
@@ -91,7 +91,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) {