swagger错误:Failed to execute 'fetch' on 'Window': Request with GET/HEAD method cannot have body

@ApiOperation(value = "下单列表")
@getMapping("list")
public Result selectFrontAgentOrderlist(@RequestBody FrontAgentOrderQuery frontAgentOrderQuery){
    return ResultUtil.success(orderService.selectFrontAgentOrderlist(initMpPage(),frontAgentOrderQuery));
}

@GetMapping请求的方法请求参数却写了个@RequestBody   将@GetMapping改成了@PostMapping 正常

posted @ 2020-03-16 15:55  9102  阅读(2082)  评论(0编辑  收藏  举报