src/main/java/com/xcong/excoin/modules/coin/controller/CoinController.java
@@ -147,8 +147,8 @@ @ApiOperation(value="获取代理资产佣金入账", notes="获取代理资产佣金入账") @ApiResponses({@ApiResponse( code = 200, message = "success", response = MemberAgentIntoInfoVo.class)}) @GetMapping(value="/getWalletAgentIntoRecords") public Result getWalletAgentIntoRecords() { return coinService.getWalletAgentIntoRecords(); public Result getWalletAgentIntoRecords(@RequestBody @Valid RecordsPageDto recordsPageDto) { return coinService.getWalletAgentIntoRecords(recordsPageDto); } /**