Browse Source

获取群主列表

houxiaohua 4 weeks ago
parent
commit
a45b8e8b57
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Service/ChatGroup/ChatGroupService.php

+ 1 - 1
app/Service/ChatGroup/ChatGroupService.php

267
             $corpIds = AdminManageCorp::where('sys_user_id', $sysGroupId)->where('is_delete', 0)->pluck('corpid');
267
             $corpIds = AdminManageCorp::where('sys_user_id', $sysGroupId)->where('is_delete', 0)->pluck('corpid');
268
             $accountList = AuthorizeCorp::select('corpid', 'corp_name')->where('enable', 1)
268
             $accountList = AuthorizeCorp::select('corpid', 'corp_name')->where('enable', 1)
269
                 ->whereIn('id', $corpIds)->get();
269
                 ->whereIn('id', $corpIds)->get();
270
-
270
+            var_dump($accountList);die;
271
             if(empty($accountList)) return [];
271
             if(empty($accountList)) return [];
272
 
272
 
273
             $corpidList = $accountList->pluck('corpid');
273
             $corpidList = $accountList->pluck('corpid');