jiangqs
2023-05-06 43d9975c99cb947b4602f05bc2e513a20de92c38
ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/controller/conslole/ConfigController.java
@@ -7,6 +7,8 @@
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
/**
 * @author jqs34
 * @version 1.0
@@ -18,14 +20,14 @@
@RequestMapping("/config")
public class ConfigController {
    @Autowired
    @Resource
    private SysTagService sysTagService;
    @InnerAuth
    @PostMapping("/getSysTag")
    public R<SysTag> getSysTag(@RequestBody Long sysTagId)
    {
        SysTag sysTag = sysTagService.getById(sysTagId);
        SysTag sysTag = sysTagService.getByTagId(sysTagId);
        return R.ok(sysTag);
    }