update 优化 通过参数键名获取键值接口的返回体

feature/model
David Wei 1 year ago
parent b24e6348c3
commit 937de85647

@ -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));
} }
/** /**

Loading…
Cancel
Save