周明轩研发负责人
门禁阻断
  • 审查执行失败:依赖安装超时,未产出结果

批量代付任务调度

hanpay-apifeat/payout-batch周慕白 · 2026-06-04 16:10
src/payout/batchJob.ts+60
1+export async function runBatch(taskId: string) {
2+ const items = await loadPayouts(taskId);
3+ for (const it of items) {
4+ await transfer(it.account, it.amount);
5+ }
6+}