| | |
| | | import cc.mrbird.febs.common.entity.FebsResponse; |
| | | import cc.mrbird.febs.mall.dto.*; |
| | | import cc.mrbird.febs.mall.service.IApiMallProductService; |
| | | import cc.mrbird.febs.mall.vo.ApiMallProductNftVo; |
| | | import cc.mrbird.febs.mall.vo.ApiOrderBuyInfoVo; |
| | | import cc.mrbird.febs.mall.vo.ApiOrderSellInfoVo; |
| | | import cc.mrbird.febs.mall.vo.ApiOrderListVo; |
| | | import cc.mrbird.febs.mall.vo.*; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import io.swagger.annotations.ApiResponse; |
| | |
| | | return iApiMallProductService.orderList(apiOrderListDto); |
| | | } |
| | | |
| | | |
| | | @ApiOperation(value = "FCM-订单管理-列表-新", notes = "FCM-订单管理-列表-新") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "success", response = ApiOrderRecordListVo.class) |
| | | }) |
| | | @PostMapping(value = "/orderRecordList") |
| | | public FebsResponse orderRecordList(@RequestBody @Valid ApiOrderRecordListDto apiOrderListDto) { |
| | | return iApiMallProductService.orderRecordList(apiOrderListDto); |
| | | } |
| | | |
| | | |
| | | @ApiOperation(value = "FCM-订单管理-查看提现详情-新", notes = "FCM-订单管理-查看提现详情-新") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "success", response = ApiOrderSellRecordInfoVo.class) |
| | | }) |
| | | @PostMapping(value = "/orderSellRecord") |
| | | public FebsResponse orderSellRecord(@RequestBody @Valid ApiOrderSellInfoDto apiOrderSellInfoDto) { |
| | | return iApiMallProductService.orderSellRecord(apiOrderSellInfoDto); |
| | | } |
| | | |
| | | @ApiOperation(value = "FCM-订单管理-查看预约详情-新", notes = "FCM-订单管理-查看预约详情-新") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "success", response = ApiOrderBuyRecordInfoVo.class) |
| | | }) |
| | | @PostMapping(value = "/orderBuyRecord") |
| | | public FebsResponse orderBuyRecord(@RequestBody @Valid ApiOrderBuyInfoDto apiOrderBuyInfoDto) { |
| | | return iApiMallProductService.orderBuyRecord(apiOrderBuyInfoDto); |
| | | } |
| | | |
| | | @ApiOperation(value = "FCM-订单管理-查看提现详情", notes = "FCM-订单管理-查看提现详情") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "success", response = ApiOrderSellInfoVo.class) |
| | |
| | | return iApiMallProductService.orderSellInsure(apiOrderSellInsureDto); |
| | | } |
| | | |
| | | |
| | | @ApiOperation(value = "FCM-订单管理-查看提现详情-投诉", notes = "FCM-订单管理-查看提现详情-投诉") |
| | | @PostMapping(value = "/orderSellComplain") |
| | | public FebsResponse orderSellComplain(@RequestBody @Valid ApiOrderSellComplainDto apiOrderSellComplainDto) { |
| | | return iApiMallProductService.orderSellComplain(apiOrderSellComplainDto); |
| | | } |
| | | |
| | | @ApiOperation(value = "FCM-FCM提现", notes = "FCM-FCM提现") |
| | | @PostMapping(value = "/outFcm") |
| | | public FebsResponse outFcm(@RequestBody @Valid ApiOutFcmDto outFcmDto) { |
| | | 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.outNFT(outNFTDto); |
| | | } |
| | | |
| | | @ApiOperation(value = "FCM-预约列表", notes = "FCM-预约列表") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "success", response = ApiOrderBuyVo.class) |
| | | }) |
| | | @PostMapping(value = "/orderBuyList") |
| | | public FebsResponse orderBuyList(@RequestBody @Valid ApiOrderBuyDto apiOrderBuyDto) { |
| | | 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); |
| | | } |
| | | |
| | | } |