| | |
| | | @ApiOperation(value = "进入交易页面", notes = "进入交易页面")
|
| | | @ApiResponses({@ApiResponse( code = 200, message = "success", response = TransactionPageOfWalletCoinVo.class)})
|
| | | @ApiImplicitParams({
|
| | | @ApiImplicitParam(name = "symbol", value = "币种", required = true, dataType = "String", paramType="query"),
|
| | | @ApiImplicitParam(name = "type", value = "买入卖出类型1:买入,2:卖出", required = true, dataType = "String", paramType="query")
|
| | | @ApiImplicitParam(name = "symbol", value = "币种", required = true, dataType = "String", paramType="query")
|
| | | })
|
| | | @GetMapping(value = "/enterTransactionPageOfWalletCoin")
|
| | | public Result enterTransactionPageOfWalletCoin(String symbol,String type) {
|
| | | return orderCoinService.enterTransactionPageOfWalletCoin(symbol,type);
|
| | | public Result enterTransactionPageOfWalletCoin(String symbol) {
|
| | | return orderCoinService.enterTransactionPageOfWalletCoin(symbol);
|
| | | }
|
| | |
|
| | | /**
|