| | |
| | | |
| | | @RequestMapping({"flyPay.do"}) |
| | | @ResponseBody |
| | | public ServerResponse flyPay(@RequestParam("payType") String payType, |
| | | public ServerResponse flyPay(@RequestParam("payTypeId") Integer payType, |
| | | @RequestParam("payAmt") String payAmt, |
| | | @RequestParam("currency") String currency, HttpServletRequest request) { |
| | | @RequestParam("img") String currency, |
| | | HttpServletRequest request) { |
| | | log.info("发起 fly 线上支付 payType = {} payAmt = {} currency = {}", new Object[]{payType, payAmt, currency}); |
| | | return this.iPayService.flyPay(payType, payAmt, currency, request); |
| | | } |