update 创建企业用户

This commit is contained in:
2023-06-20 10:09:21 +08:00
parent 1a4c93b1c9
commit 23efa13381
2 changed files with 98 additions and 0 deletions

View File

@@ -247,6 +247,11 @@ public class AdapayMemberService {
return vo;
}
/**
* 更新结算账户设置
* @param dto
* @throws BaseAdaPayException
*/
public void updateSettleAccountConfig(UpdateAccountConfigDTO dto) throws BaseAdaPayException {
// 通过merchantId 查询出汇付会员id 和 结算账户id用来查询余额
AdapayMemberAccount adapayMemberAccount = adapayMemberAccountService.selectByMerchantId(dto.getMerchantId());
@@ -269,4 +274,11 @@ public class AdapayMemberService {
}
Map<String, Object> settleCount = SettleAccount.update(params);
}
/**
* 创建企业用户
*/
public void createCorpMember() {
}
}