From 8f61316069a6ffffb0998ed3f498bd4e3acc77e4 Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期二, 10 五月 2022 11:36:15 +0800
Subject: [PATCH] 优化 费用

---
 service-acct/src/main/java/com/java110/acct/api/AccountWithdrawalApplyApi.java |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/service-acct/src/main/java/com/java110/acct/api/AccountWithdrawalApplyApi.java b/service-acct/src/main/java/com/java110/acct/api/AccountWithdrawalApplyApi.java
index b21aa25..981b3f8 100644
--- a/service-acct/src/main/java/com/java110/acct/api/AccountWithdrawalApplyApi.java
+++ b/service-acct/src/main/java/com/java110/acct/api/AccountWithdrawalApplyApi.java
@@ -95,13 +95,17 @@
     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 = "";
         }

--
Gitblit v1.8.0