where('title', $mediaName)->first(); if (!$mediaRecord) { return null; } // 创建新账号并关联父级 $data = [ 'account_id' => $accountId, 'title' => $accountName, 'access_token' => $accessToken, 'parent_id' => $mediaRecord->id, 'created_at' => Carbon::now(), // 自动生成时间戳 'updated_at' => Carbon::now(), ]; return $model->insert($data); } /* * 查出dist_id=0和parent_id=0的账号 */ public static function getRootAccounts() { $model = new Model(); $accounts = $model->where('dist_id', 0)->where('parent_id', 0)->get(); return $accounts; } /* * 查找所有用户账号 */ public static function getUserAccounts() { $model = new Model(); $accounts = $model->where('dist_id','>', 0)->where('parent_id','>',0)->orderBy('parent_id', 'asc')->get(); return $accounts; } }