用户每日活跃检测

This commit is contained in:
cano
2024-03-02 16:53:43 +08:00
parent 1a9008b318
commit f5f7168009
9 changed files with 244 additions and 1 deletions

View File

@ -96,7 +96,7 @@ class FollowModel extends BaseModel
$oModel = DB::table($oFollowModel->getTable() . ' as a');
return $oModel->where('a.uid', $uid)
->leftjoin($oCustomerUserExtendModel->getTable() . ' as b', 'a.follow_uid', '=', 'b.uid')
->where('b.fans_num', $iFansLimit)
->where('b.fans_num','>=', $iFansLimit)
->get($col);
}