Initial import
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
namespace app\models;
|
||||
|
||||
/**
|
||||
* Class UserExplorerObjects
|
||||
* @package app\models
|
||||
* @property $explorer_object_id
|
||||
* @property $user_id
|
||||
* @property $date_visit
|
||||
* @property $explorerObject
|
||||
*/
|
||||
class UserExplorerObjects extends _Base
|
||||
{
|
||||
public function getExploreObject()
|
||||
{
|
||||
return $this->hasOne(ExplorerObjects::class, ['id' => 'explorer_object_id']);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user