门禁阻断
- 审查执行失败:依赖安装超时,未产出结果
批量代付任务调度
hanpay-apifeat/payout-batch周慕白 · 2026-06-04 16:10src/payout/batchJob.ts+6−0
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+}