where('status',0)->where('is_del',0)->order('create_time desc')->page($offset, $length)->select()->toArray(); } public static function oneLevelRent($params):array { //获取承租公司信息 $company = Company::where('id',$params['company_id'])->find(); //验证公司信息 if(!$company){ return ['code'=>0,'msg'=>'未找到承租公司']; } $ids = explode(',',$params['tricycle_ids']); dump($company['company_name'],$ids); } }