|
|
|
@ -41,17 +41,17 @@ public class AdminAccountCloseController extends BaseController { |
|
|
|
Map qmap =new HashMap(); |
|
|
|
// 结算人
|
|
|
|
String userName=request.getParameter("user_name"); |
|
|
|
if(StringUtils.isNotBlank(userName)){ |
|
|
|
if(StringUtils.isNotBlank(userName.trim())){ |
|
|
|
qmap.put("name",userName); |
|
|
|
} |
|
|
|
//结算账户
|
|
|
|
String closeAccount=request.getParameter("close_account"); |
|
|
|
if(StringUtils.isNotBlank(closeAccount)){ |
|
|
|
if(StringUtils.isNotBlank(closeAccount.trim())){ |
|
|
|
qmap.put("close_account",closeAccount); |
|
|
|
} |
|
|
|
//银行卡号
|
|
|
|
String bankAccount= request.getParameter("bank_account"); |
|
|
|
if(StringUtils.isNotBlank(bankAccount)){ |
|
|
|
if(StringUtils.isNotBlank(bankAccount.trim())){ |
|
|
|
qmap.put("publicAccount",bankAccount); |
|
|
|
} |
|
|
|
//状态
|
|
|
|
|