whycxzp
2023-12-20 14912f45bdce261601e1476b8bd4a3a502d09d52
src/main/java/com/whyc/controller/TestParamController.java
@@ -33,7 +33,7 @@
    @ApiOperation("服务调用测试")
    @GetMapping("callService")
    public Response<TestParam> callService(int seconds) throws InterruptedException {
    public Response<TestParam> callService(@RequestParam Integer seconds) throws InterruptedException {
        service.callService(seconds);
        return new Response().set(1,"调用服务成功!");
    }