|
@@ -131,6 +131,18 @@ public class PayApi {
|
|
|
return getResponseJson(result);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation("查询本次支付订单结果")
|
|
|
+ @ApiImplicitParams({
|
|
|
+ @ApiImplicitParam(required = false, name = "mbOrderId", value = "平台唯一流水号"),
|
|
|
+ @ApiImplicitParam(required = false, name = "orderFlag", value = "订单标识:0非订单,1订单")
|
|
|
+ })
|
|
|
+ @GetMapping("/result/union")
|
|
|
+ public ResponseJson<String> getUnionResult(String mbOrderId,Integer orderFlag) throws Exception {
|
|
|
+ String url = core + "/order/pay/result/union?mbOrderId=" + mbOrderId + "&orderFlag=" + orderFlag;
|
|
|
+ String result = RequestUtil.sendGet(url);
|
|
|
+ return getResponseJson(result);
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation("生成网银支付链接")
|
|
|
@ApiImplicitParam(required = false, name = "param", value = "参数")
|
|
|
@PostMapping("/link")
|