mirror of
				https://github.com/dromara/RuoYi-Vue-Plus.git
				synced 2025-11-04 08:13:44 +08:00 
			
		
		
		
	!429 update 优化 通过参数键名获取键值接口的返回体
Merge pull request !429 from David Wei/update/config_response
This commit is contained in:
		@@ -68,8 +68,8 @@ public class SysConfigController extends BaseController {
 | 
				
			|||||||
     * @param configKey 参数Key
 | 
					     * @param configKey 参数Key
 | 
				
			||||||
     */
 | 
					     */
 | 
				
			||||||
    @GetMapping(value = "/configKey/{configKey}")
 | 
					    @GetMapping(value = "/configKey/{configKey}")
 | 
				
			||||||
    public R<Void> getConfigKey(@PathVariable String configKey) {
 | 
					    public R<String> getConfigKey(@PathVariable String configKey) {
 | 
				
			||||||
        return R.ok(configService.selectConfigByKey(configKey));
 | 
					        return R.ok("操作成功", configService.selectConfigByKey(configKey));
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user