| | |
| | | return iApiMallProductService.outFcm(outFcmDto); |
| | | } |
| | | |
| | | |
| | | @ApiOperation(value = "FCM-NFT兑换GFD,GFA兑换GFD", notes = "FCM-NFT兑换GFD,GFA兑换GFD") |
| | | @PostMapping(value = "/transGfd") |
| | | public FebsResponse transGfd(@RequestBody @Valid ApiTransGfdDto transGfdDto) { |
| | | return iApiMallProductService.transGfd(transGfdDto); |
| | | } |
| | | |
| | | |
| | | @ApiOperation(value = "FCM-GFD兑换NFT,GFD兑换GFA", notes = "FCM-GFD兑换NFT,GFD兑换GFA") |
| | | @PostMapping(value = "/gfdTrans") |
| | | public FebsResponse gfdTrans(@RequestBody @Valid ApiGfdTransDto transGfdDto) { |
| | | return iApiMallProductService.gfdTrans(transGfdDto); |
| | | } |
| | | |
| | | @ApiOperation(value = "FCM-NFT提现", notes = "FCM-NFT提现") |
| | | @PostMapping(value = "/outNFT") |
| | | public FebsResponse outNFT(@RequestBody @Valid ApiOutNFTDto outNFTDto) { |
| | |
| | | return iApiMallProductService.orderBuyList(apiOrderBuyDto); |
| | | } |
| | | |
| | | @ApiOperation(value = "FCM-提现列表", notes = "FCM-提现列表") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "success", response = ApiOrderSellVo.class) |
| | | }) |
| | | @PostMapping(value = "/orderSellList") |
| | | public FebsResponse orderSellList(@RequestBody @Valid ApiOrderSellDto apiOrderBuyDto) { |
| | | return iApiMallProductService.orderSellList(apiOrderBuyDto); |
| | | } |
| | | |
| | | } |