代码提交

This commit is contained in:
wong
2025-08-07 11:56:04 +08:00
parent f592784c11
commit b33231b3b4
7 changed files with 462 additions and 7 deletions

View File

@@ -52,6 +52,7 @@ class SyncWechatDataToCkbTask extends Command
$this->syncWechatDevice($ChuKeBaoAdapter);
$this->syncWechatCustomer($ChuKeBaoAdapter);
$this->syncWechatGroup($ChuKeBaoAdapter);
$this->syncWechatGroupCustomer($ChuKeBaoAdapter);
$this->syncWechatFriendToTrafficPoolBatch($ChuKeBaoAdapter);
$this->syncTrafficSourceUser($ChuKeBaoAdapter);
$this->syncTrafficSourceGroup($ChuKeBaoAdapter);
@@ -113,6 +114,10 @@ class SyncWechatDataToCkbTask extends Command
{
return $ChuKeBaoAdapter->syncWechatGroup();
}
protected function syncWechatGroupCustomer(ChuKeBaoAdapter $ChuKeBaoAdapter)
{
return $ChuKeBaoAdapter->syncWechatGroupCustomer();
}
}