更新支付

This commit is contained in:
磷叶 2025-06-06 18:22:58 +08:00
parent 4cb4ef376e
commit 6282f33cc3

View File

@ -383,9 +383,9 @@ public class PayServiceImpl implements PayService {
}, 10, TimeUnit.SECONDS);
} else {
// 异步处理支付成功
scheduledExecutorService.execute(() -> {
scheduledExecutorService.schedule(() -> {
this.handleSuccess(pay.getNo(), LocalDateTime.now());
});
}, 10, TimeUnit.SECONDS);
}
return vo;