Commit a37b635f by 冷斌

add

parent 1e3986e8
...@@ -724,12 +724,12 @@ class Model_Home extends PhalApi_Model_NotORM { ...@@ -724,12 +724,12 @@ class Model_Home extends PhalApi_Model_NotORM {
$users=array_column($users,"uid"); $users=array_column($users,"uid");
$userids=implode(",",$users); $userids=implode(",",$users);
$where.=" type='expend' and action in ('sendgift','sendbarrage') and uid in ({$userids}) "; $where.=" type='expend' and action in ('sendgift','sendbarrage') and touid in ({$userids}) ";
$result=DI()->notorm->users_coinrecord $result=DI()->notorm->users_coinrecord
->select('sum(totalcoin) as totalcoin, uid') ->select('sum(totalcoin) as totalcoin, uid')
->where($where) ->where($where)
->group('uid') ->group('touid')
->order('totalcoin desc') ->order('totalcoin desc')
->limit(100) ->limit(100)
->fetchAll(); ->fetchAll();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment