修复流量池数据同步不更新问题

This commit is contained in:
wong
2025-07-22 14:10:10 +08:00
parent a3a2662eb1
commit 3a879c5ce2

View File

@@ -51,6 +51,7 @@ class SyncWechatDataToCkbTask extends Command
$this->syncWechatDeviceLoginLog($ChuKeBaoAdapter);
$this->syncWechatDevice($ChuKeBaoAdapter);
$this->syncWechatCustomer($ChuKeBaoAdapter);
$this->syncWechatFriendToTrafficPoolBatch($ChuKeBaoAdapter);
$output->writeln("同步任务 sync_wechat_to_ckb 已结束");
return true;
@@ -90,4 +91,9 @@ class SyncWechatDataToCkbTask extends Command
{
return $ChuKeBaoAdapter->syncWechatCustomer();
}
protected function syncWechatFriendToTrafficPoolBatch(ChuKeBaoAdapter $ChuKeBaoAdapter)
{
return $ChuKeBaoAdapter->syncWechatFriendToTrafficPoolBatch();
}
}