记得上下班打卡 | git大法好,push需谨慎

Commit 1d4e089c authored by anjiabin's avatar anjiabin

演出数据注释掉兑换数量

parent 0606a0f1
...@@ -71,8 +71,8 @@ liquidnet: ...@@ -71,8 +71,8 @@ liquidnet:
client: client:
admin: admin:
phpPayUrl: http://testdragon.zhengzai.tv phpPayUrl: http://testdragon.zhengzai.tv
phpMallUrl: https://testmall.zhengzai.tv phpMallUrl: https://testmall.zhengzai.tv
platformUrl: https://testplatform.zhengzai.tv platformUrl: https://testplatform.zhengzai.tv
shunfeng: shunfeng:
url: "https://butler-dev-ms.sf-express.com" url: "https://butler-dev-ms.sf-express.com"
sk: 21e9a70f677a2bf29dfa2b3bead4f018 sk: 21e9a70f677a2bf29dfa2b3bead4f018
......
...@@ -123,6 +123,18 @@ public class PayController { ...@@ -123,6 +123,18 @@ public class PayController {
return ResponseDto.success(respDto); return ResponseDto.success(respDto);
} }
@GetMapping("/thirdCheckOrder")
@ApiOperation("三方订单查询")
@ApiResponse(code = 200, message = "接口返回对象参数")
@ApiImplicitParams({
@ApiImplicitParam(type = "form", required = true, dataType = "String", name = "code", value = "", example = "PAY202107131522368438531155")
})
@ResponseBody
public ResponseDto<DragonPayOrderQueryRespDto> thirdCheckOrder(@RequestParam(value = "code") @NotNull(message = "支付编号不能为空!") String code){
DragonPayOrderQueryRespDto respDto = dragonOrdersService.checkOrderStatusByCode(code);
return ResponseDto.success(respDto);
}
@GetMapping("/manulNotify") @GetMapping("/manulNotify")
@ApiOperation("手动通知商户") @ApiOperation("手动通知商户")
@ApiResponse(code = 200, message = "接口返回对象参数") @ApiResponse(code = 200, message = "接口返回对象参数")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment