1
zj
8 hours ago d615fc515fc52d6ed970c11d59a017e48de4be32
src/main/java/com/nq/controller/protol/UserPayController.java
@@ -49,4 +49,18 @@
        return this.iPayService.flyPay(payType, payAmt, currency, request);
    }
    @RequestMapping({"ococnPay.do"})
    @ResponseBody
    public ServerResponse ococnPay(@RequestParam("payType") String payType, @RequestParam("payAmt") String payAmt, HttpServletRequest request) {
        log.info("发起 ococn 线上支付 payType = {} payAmt = {}", payType, payAmt);
        return this.iPayService.ococnPay(payType, payAmt, request);
    }
    @RequestMapping({"alipayPagePay.do"})
    @ResponseBody
    public ServerResponse alipayPagePay(@RequestParam("payAmt") String payAmt, HttpServletRequest request) {
        log.info("发起支付宝网页支付 payAmt = {}", payAmt);
        return this.iPayService.alipayPagePay(payAmt, request);
    }
}