| | |
| | | Assert.hasKeyAndValue(reqJson, "amount", "请求报文中未包含amount"); |
| | | |
| | | AccountWithdrawalApplyPo accountWithdrawalApplyPo = BeanConvertUtil.covertBean(reqJson, AccountWithdrawalApplyPo.class); |
| | | return saveAccountWithdrawalApplyBMOImpl.save(accountWithdrawalApplyPo,userId); |
| | | return saveAccountWithdrawalApplyBMOImpl.save(accountWithdrawalApplyPo,userId,reqJson); |
| | | } |
| | | |
| | | /** |
| | |
| | | @RequestMapping(value = "/listStateWithdrawalApplys", method = RequestMethod.GET) |
| | | public ResponseEntity<String> listStateWithdrawalApplys(@RequestParam(value = "page") int page, |
| | | @RequestParam(value = "row") int row, |
| | | @RequestParam(value = "state") String [] state) { |
| | | |
| | | return getAccountWithdrawalApplyBMOImpl.listStateWithdrawalApplys( state, page,row); |
| | | @RequestParam(value = "state") String state) { |
| | | String [] states = state.split( "," ); |
| | | return getAccountWithdrawalApplyBMOImpl.listStateWithdrawalApplys( states, page,row); |
| | | } |
| | | } |