代码修改

release
xuliangwei 2 years ago
parent 12c7e36036
commit a6cb7acc62
  1. 2
      dxhy-erp/src/main/java/com/dxhy/erp/controller/RequestRecallController.java

@ -57,7 +57,7 @@ public class RequestRecallController extends AbstractController {
@ApiOperation(value = "接口记录详细查询", notes = "接口记录详细查询") @ApiOperation(value = "接口记录详细查询", notes = "接口记录详细查询")
@RequestMapping(path = "/requestDetailRecordBatch", method = {RequestMethod.POST, RequestMethod.GET}) @RequestMapping(path = "/requestDetailRecordBatch", method = {RequestMethod.POST, RequestMethod.GET})
public ResponseEntity<?> batchRequestDetailRecord(Long id) { public ResponseEntity<?> batchRequestDetailRecord(@RequestBody Long id) {
JSONObject resultJson = requestRecordService.getDetailRecord(id); JSONObject resultJson = requestRecordService.getDetailRecord(id);
return ResponseEntity.ok(R.ok().put("data",resultJson)); return ResponseEntity.ok(R.ok().put("data",resultJson));
} }

Loading…
Cancel
Save