| | |
| | | */
|
| | | @ApiOperation(value = "获取币币交易历史订单信息", notes = "获取币币交易历史订单信息")
|
| | | @ApiResponses({@ApiResponse( code = 200, message = "success", response = OrderWalletCoinDealListVo.class)})
|
| | | @ApiImplicitParams({
|
| | | @ApiImplicitParam(name = "symbol", value = "币种", required = true, dataType = "String", paramType="query")
|
| | | })
|
| | | @GetMapping(value = "/findAllWalletCoinOrder")
|
| | | public Result findAllWalletCoinOrder() {
|
| | | return orderCoinService.findAllWalletCoinOrder();
|
| | | public Result findAllWalletCoinOrder(String symbol) {
|
| | | return orderCoinService.findAllWalletCoinOrder(symbol);
|
| | | }
|
| | |
|
| | | /**
|