get(); }else{ $rows = self::get(); } $item = []; foreach ($rows as $row) { $item[$row->id] = $row->name; } return $item; } public static function getName($hid=null) { //获取骑手名称 if ($hid){ $horseman = LanzuEmployees::find($hid); if ($horseman){ return $horseman->name; } } return '--'; } }