| | |
| | | @RequestMapping({"createOrder.do"}) |
| | | @ResponseBody |
| | | public ServerResponse createOrder(@RequestParam(value = "userId", required = false) Integer userId, @RequestParam(value = "state", required = false) Integer state, @RequestParam(value = "amt", required = false) Integer amt, @RequestParam(value = "payChannel", required = false) String payChannel) { |
| | | return this.iUserRechargeService.createOrder(userId, state, amt, payChannel); |
| | | return this.iUserRechargeService.createOrder(userId, state, amt, payChannel, null); |
| | | } |
| | | |
| | | //删除资金管理 充值列表订单信息 |