|
@@ -68,8 +68,8 @@ public class SysConfigController extends BaseController {
|
|
|
* @param configKey 参数Key
|
|
|
*/
|
|
|
@GetMapping(value = "/configKey/{configKey}")
|
|
|
- public R<Void> getConfigKey(@PathVariable String configKey) {
|
|
|
- return R.ok(configService.selectConfigByKey(configKey));
|
|
|
+ public R<String> getConfigKey(@PathVariable String configKey) {
|
|
|
+ return R.ok("操作成功", configService.selectConfigByKey(configKey));
|
|
|
}
|
|
|
|
|
|
/**
|