xuhy
2025-08-27 d4c12b3ad2ae1c052b3b080a68398448e56b619a
ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/feignClient/SysConfigClient.java
@@ -7,6 +7,7 @@
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
@@ -19,7 +20,6 @@
    @GetMapping(value = "config/{configId}")
    R<SysConfig> getInfo(@PathVariable("configId") Long configId);
    @GetMapping(value = "config/update")
    @PostMapping(value = "config/update")
    void update(@RequestBody SysConfig data1);
}