mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 02:55:04 +08:00
update
This commit is contained in:
@@ -98,7 +98,7 @@ public class AdapayMemberService {
|
||||
// 银行账户类型:1-对公;2-对私
|
||||
accountInfo.put("bank_acct_type", dto.getBankAcctType());
|
||||
// 银行账户开户银行所在省份编码 (省市编码),银行账户类型为对公时,必填
|
||||
accountInfo.put("prov_code", dto.getAreaCode());
|
||||
accountInfo.put("prov_code", dto.getProvCode());
|
||||
// 银行账户开户银行所在地区编码(省市编码),银行账户类型为对公时,必填
|
||||
accountInfo.put("area_code", dto.getAreaCode());
|
||||
|
||||
@@ -112,7 +112,7 @@ public class AdapayMemberService {
|
||||
log.info("创建汇付结算账户result:{}", settleCount);
|
||||
|
||||
if (settleCount == null || StringUtils.equals((String) settleCount.get("status"), "failed")) {
|
||||
String errorMsg = settleCount == null ? "创建汇付结算账户失败" : (String) member.get("error_msg");
|
||||
String errorMsg = settleCount == null ? "创建汇付结算账户失败" : (String) settleCount.get("error_msg");
|
||||
throw new BusinessException("00500001", errorMsg);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user