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:
@@ -609,9 +609,9 @@ public class AdapayService {
|
||||
// 逻辑删除原来审核不通过的记录
|
||||
List<AdapayMemberAccount> accountList = adapayMemberAccountService.selectAdapayMemberAccountList(dto.getMerchantId());
|
||||
if (CollectionUtils.isNotEmpty(accountList)) {
|
||||
Long[] ids = accountList.stream()
|
||||
.map(AdapayMemberAccount::getId)
|
||||
.toArray(Long[]::new);
|
||||
List<String> ids = accountList.stream()
|
||||
.map(x -> x.getId() + "")
|
||||
.collect(Collectors.toList());
|
||||
adapayMemberAccountService.deleteAdapayMemberAccountByIds(ids);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user