src/main/java/com/whyc/controller/TestParamController.java
@@ -31,4 +31,11 @@ return new Response().set(1,"更新完成"); } @ApiOperation("服务调用测试") @GetMapping("callService") public Response<TestParam> callService(int seconds) throws InterruptedException { service.callService(seconds); return new Response().set(1,"调用服务成功!"); } }