Initial import
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace app\models;
|
||||
|
||||
/**
|
||||
* Class ExplorerObjects
|
||||
* @package app\models
|
||||
* @property $id
|
||||
* @property $tour_object_id
|
||||
* @property $points
|
||||
* @property $media_key
|
||||
* @property \app\models\TourObjects $tourObject
|
||||
*/
|
||||
class ExplorerObjects extends _Base
|
||||
{
|
||||
public function getTourObject() {
|
||||
return $this->hasOne(TourObjects::class, ['id' => 'tour_object_id']);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user