| | |
| | | |
| | | Assert.hasKeyAndValue(reqJson, "acctId", "请求报文中未包含acctId"); |
| | | Assert.hasKeyAndValue(reqJson, "amount", "请求报文中未包含amount"); |
| | | Assert.hasKeyAndValue(reqJson, "bankId", "请求报文中未包含bankId"); |
| | | |
| | | AccountWithdrawalApplyPo accountWithdrawalApplyPo = BeanConvertUtil.covertBean(reqJson, AccountWithdrawalApplyPo.class); |
| | | return saveAccountWithdrawalApplyBMOImpl.save(accountWithdrawalApplyPo,userId); |
| | | return saveAccountWithdrawalApplyBMOImpl.save(accountWithdrawalApplyPo,userId,reqJson); |
| | | } |
| | | |
| | | /** |
| | |
| | | public ResponseEntity<String> queryAccountWithdrawalApply(@RequestParam(value = "page") int page, |
| | | @RequestParam(value = "row") int row, |
| | | @RequestParam(value = "applyUserName",required = false) String applyUserName, |
| | | @RequestParam(value = "bankCode",required = false) String bankCode, |
| | | @RequestParam(value = "applyUserTel",required = false) String applyUserTel, |
| | | @RequestParam(value = "objId",required = false) String objId, |
| | | @RequestParam(value = "state",required = false) String state) { |
| | | AccountWithdrawalApplyDto accountWithdrawalApplyDto = new AccountWithdrawalApplyDto(); |
| | | accountWithdrawalApplyDto.setPage(page); |
| | | accountWithdrawalApplyDto.setRow(row); |
| | | accountWithdrawalApplyDto.setApplyUserName(applyUserName); |
| | | accountWithdrawalApplyDto.setApplyUserTel(applyUserTel); |
| | | accountWithdrawalApplyDto.setBankCode(bankCode); |
| | | accountWithdrawalApplyDto.setObjId( objId ); |
| | | if(null == state || "".equals( state )){ |
| | | state = ""; |
| | | } |