|
|
@ -1,15 +1,6 @@ |
|
|
package com.bnyer.img.controller; |
|
|
package com.bnyer.img.controller; |
|
|
|
|
|
|
|
|
import cn.hutool.core.util.IdUtil; |
|
|
|
|
|
import com.alibaba.fastjson.JSON; |
|
|
import com.alibaba.fastjson.JSON; |
|
|
import com.alipay.api.AlipayApiException; |
|
|
|
|
|
import com.alipay.api.AlipayClient; |
|
|
|
|
|
import com.alipay.api.CertAlipayRequest; |
|
|
|
|
|
import com.alipay.api.DefaultAlipayClient; |
|
|
|
|
|
import com.alipay.api.domain.AlipayFundTransUniTransferModel; |
|
|
|
|
|
import com.alipay.api.domain.Participant; |
|
|
|
|
|
import com.alipay.api.request.AlipayFundTransUniTransferRequest; |
|
|
|
|
|
import com.alipay.api.response.AlipayFundTransUniTransferResponse; |
|
|
|
|
|
import com.bnyer.common.core.web.controller.BaseController; |
|
|
import com.bnyer.common.core.web.controller.BaseController; |
|
|
import com.bnyer.common.core.web.domain.AjaxResult; |
|
|
import com.bnyer.common.core.web.domain.AjaxResult; |
|
|
import com.bnyer.img.domain.TiktokImg; |
|
|
import com.bnyer.img.domain.TiktokImg; |
|
|
@ -130,10 +121,10 @@ public class CreatorMiniController extends BaseController { |
|
|
|
|
|
|
|
|
//@TokenCheck
|
|
|
//@TokenCheck
|
|
|
@ApiOperation(value="10天内重新发起审核") |
|
|
@ApiOperation(value="10天内重新发起审核") |
|
|
@GetMapping(value = "/reVerify/{id}") |
|
|
@GetMapping(value = "/reVerify/{creatorId}") |
|
|
public AjaxResult reVerify(@PathVariable @ApiParam("艺术家id") Long id){ |
|
|
public AjaxResult reVerify(@PathVariable @ApiParam("艺术家id") Long creatorId){ |
|
|
log.info("【艺术家小程序】艺术家【{}】重新发起了审核",id); |
|
|
log.info("【艺术家小程序】艺术家【{}】重新发起了审核",creatorId); |
|
|
return AjaxResult.success(creatorService.reVerify(id)); |
|
|
return AjaxResult.success(creatorService.reVerify(creatorId)); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
//@TokenCheck
|
|
|
//@TokenCheck
|
|
|
@ -177,10 +168,10 @@ public class CreatorMiniController extends BaseController { |
|
|
|
|
|
|
|
|
//@TokenCheck
|
|
|
//@TokenCheck
|
|
|
@ApiOperation(value="查询指定艺术家提现记录明细") |
|
|
@ApiOperation(value="查询指定艺术家提现记录明细") |
|
|
@GetMapping(value = "/getWithdrawDetails/{orderId}") |
|
|
@PostMapping(value = "/getWithdrawDetails") |
|
|
public AjaxResult getWithdrawDetails(@PathVariable @ApiParam("订单id") String orderId){ |
|
|
public AjaxResult getWithdrawDetails(@Validated @RequestBody @ApiParam("订单对象") WithdrawOrderDto param){ |
|
|
log.info("【艺术家小程序】查询订单id【{}】提现记录明细",orderId); |
|
|
log.info("【艺术家小程序】查询订单id【{}】提现记录明细",param.getOrderId()); |
|
|
return AjaxResult.success(withdrawLogService.queryFrontDetails(orderId)); |
|
|
return AjaxResult.success(withdrawLogService.queryFrontDetails(param.getOrderId())); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
//@TokenCheck
|
|
|
//@TokenCheck
|
|
|
|