优化呼出接口

This commit is contained in:
俞扬
2023-08-14 16:06:56 +08:00
parent 634d6ec24e
commit 106975a3e6
3 changed files with 5 additions and 4 deletions

View File

@@ -33,8 +33,8 @@ public class CallController {
@PostMapping("/callUp")
@ApiOperation("呼出电话")
public ResponseResult callUp(@RequestBody CallUpReq request) throws ApiException {
callService.callUp(request);
return ResponseResult.success();
String res = callService.callUp(request);
return ResponseResult.success(res);
}
@PostMapping("/finish/callback")