|
|
@@ -112,8 +112,8 @@ public class AccountWithdrawalApplyApi {
|
|
|
@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);
|
|
|
}
|
|
|
}
|