shiyj1101
2021-06-17 dc2cc241bacf27672206596afeb6153217c31bdc
service-acct/src/main/java/com/java110/acct/api/AccountWithdrawalApplyApi.java
@@ -103,7 +103,19 @@
        accountWithdrawalApplyDto.setRow(row);
        accountWithdrawalApplyDto.setApplyUserName(applyUserName);
        accountWithdrawalApplyDto.setApplyUserTel(applyUserTel);
        if(null == state || "".equals( state )){
            state = "";
        }
        accountWithdrawalApplyDto.setState(state);
        return getAccountWithdrawalApplyBMOImpl.get(accountWithdrawalApplyDto);
    }
    @RequestMapping(value = "/listStateWithdrawalApplys", method = RequestMethod.GET)
    public ResponseEntity<String> listStateWithdrawalApplys(@RequestParam(value = "page") int page,
                                                              @RequestParam(value = "row") int row,
                                                              @RequestParam(value = "state",required = false) String [] state) {
        return getAccountWithdrawalApplyBMOImpl.listStateWithdrawalApplys( state, page,row);
    }
}