14 lines
241 B
PHP
14 lines
241 B
PHP
<?php
|
|
|
|
namespace plugin\shortplay\app\model;
|
|
|
|
use app\model\Basic;
|
|
|
|
class PluginShortplayDramaStoryboardProp extends Basic
|
|
{
|
|
public function prop()
|
|
{
|
|
return $this->hasOne(PluginShortplayProp::class, 'id', 'prop_id');
|
|
}
|
|
}
|