fix:【Pay 支付】去除 54 强制 id 转账校验

This commit is contained in:
YunaiV 2025-07-16 00:02:57 +08:00
parent ea5b12f21e
commit a10e7aedaa

View File

@ -264,9 +264,6 @@ public class PayTransferServiceImpl implements PayTransferService {
}
int count = 0;
for (PayTransferDO transfer : list) {
if (!transfer.getId().equals(54L)) {
continue;
}
count += syncTransfer(transfer) ? 1 : 0;
}
return count;