huliguo
2025-04-17 19df67e19f23cd2a04d1c7f355e1e656f4140af4
ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/controller/SysConfigController.java
@@ -50,7 +50,7 @@
    * 根据参数编号获取详细信息
    */
   @GetMapping(value = "/{configId}")
   public R getInfo(@PathVariable Long configId) {
   public R getInfo(@PathVariable("configId") Long configId) {
      return R.ok(configService.selectConfigById(configId));
   }