ruoyi-service/ruoyi-worker/src/main/java/com/ruoyi/worker/controller/MasterWorkerController.java
@@ -640,9 +640,9 @@ @ApiOperation(value = "打电话", tags = {"师傅端-打电话[2.0]"}) @GetMapping(value = "/workerCall") @ApiImplicitParams({ @ApiImplicitParam(value = "订单id", name = "orderId", dataType = "Integer", required = true), @ApiImplicitParam(value = "订单id", name = "orderId", dataType = "String", required = true), }) public R<String> workerCall(@RequestParam Integer orderId) { public R<String> workerCall(@RequestParam String orderId) { orderClient.call(orderId); return R.ok(); }