update 逻辑删除审核未通过的汇付会员

This commit is contained in:
2024-04-24 17:07:47 +08:00
parent 514ae10214
commit bf0e3f5334

View File

@@ -90,6 +90,9 @@ public class AdapayMemberAccountServiceImpl implements AdapayMemberAccountServic
*/
@Override
public int deleteAdapayMemberAccountByIds(List<String> ids) {
if (CollectionUtils.isEmpty(ids)) {
return 0;
}
return adapayMemberAccountMapper.deleteAdapayMemberAccountByIds(ids);
}