通话记录数据清洗

This commit is contained in:
wong
2025-08-12 16:58:00 +08:00
parent 14c882ff08
commit c847eff9fc
2 changed files with 40 additions and 0 deletions

View File

@@ -56,6 +56,7 @@ class SyncWechatDataToCkbTask extends Command
$this->syncWechatFriendToTrafficPoolBatch($ChuKeBaoAdapter);
$this->syncTrafficSourceUser($ChuKeBaoAdapter);
$this->syncTrafficSourceGroup($ChuKeBaoAdapter);
$this->syncCallRecording($ChuKeBaoAdapter);
$output->writeln("同步任务 sync_wechat_to_ckb 已结束");
return true;
@@ -118,6 +119,10 @@ class SyncWechatDataToCkbTask extends Command
{
return $ChuKeBaoAdapter->syncWechatGroupCustomer();
}
protected function syncCallRecording(ChuKeBaoAdapter $ChuKeBaoAdapter)
{
return $ChuKeBaoAdapter->syncCallRecording();
}
}