同步群列表

This commit is contained in:
wong
2025-08-05 10:28:28 +08:00
parent ebff15fbed
commit 982b2c024b
2 changed files with 45 additions and 0 deletions

View File

@@ -51,6 +51,7 @@ class SyncWechatDataToCkbTask extends Command
$this->syncWechatDeviceLoginLog($ChuKeBaoAdapter);
$this->syncWechatDevice($ChuKeBaoAdapter);
$this->syncWechatCustomer($ChuKeBaoAdapter);
$this->syncWechatGroup($ChuKeBaoAdapter);
$this->syncWechatFriendToTrafficPoolBatch($ChuKeBaoAdapter);
$this->syncTrafficSourceUser($ChuKeBaoAdapter);
$this->syncTrafficSourceGroup($ChuKeBaoAdapter);
@@ -108,5 +109,10 @@ class SyncWechatDataToCkbTask extends Command
return $ChuKeBaoAdapter->syncTrafficSourceGroup();
}
protected function syncWechatGroup(ChuKeBaoAdapter $ChuKeBaoAdapter)
{
return $ChuKeBaoAdapter->syncWechatGroup();
}
}