| | |
| | | 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); |
| | | } |
| | | |
| | | } |