| | |
| | | } else { |
| | | bearerToken = request.getHeader(AppContants.TOKEN_HEADER); |
| | | } |
| | | log.info("123:{}", bearerToken); |
| | | if (StringUtils.hasText(bearerToken) && bearerToken.startsWith(AppContants.TOKEN_START_WITH)) { |
| | | // 去掉令牌前缀 |
| | | String rsaToken = bearerToken.replace(AppContants.TOKEN_START_WITH, ""); |
| | |
| | |
|
| | |
|
| | | @ApiOperation(value = "USDT充值支付确认", notes = "USDT充值支付确认")
|
| | | @ApiImplicitParam(name = "token", value = "token", required = false, dataType = "String", paramType = "body")
|
| | | @RequestMapping(value = "/commitPay", method = RequestMethod.GET)
|
| | | public Result commitPay(@PathVariable(value = "id") Long id) {
|
| | | // 用户提交支付确认 将状态改为付款中
|