57 lines
1.1 KiB
PHP
57 lines
1.1 KiB
PHP
![]() |
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Modules\System\Models;
|
||
|
|
||
|
use Catch\Base\CatchModel as Model;
|
||
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
||
|
|
||
|
/**
|
||
|
* @property $id
|
||
|
* @property $name
|
||
|
* @property $key
|
||
|
* @property $status
|
||
|
* @property $description
|
||
|
* @property $creator_id
|
||
|
* @property $created_at
|
||
|
* @property $updated_at
|
||
|
* @property $deleted_at
|
||
|
*/
|
||
|
class Dictionary extends Model
|
||
|
{
|
||
|
protected $table = 'system_dictionary';
|
||
|
|
||
|
protected $fillable = [ 'id', 'name', 'key', 'status', 'description', 'creator_id', 'created_at', 'updated_at', 'deleted_at' ];
|
||
|
|
||
|
/**
|
||
|
* @var array
|
||
|
*/
|
||
|
protected array $fields = ['id','name','key','status','description','created_at','updated_at'];
|
||
|
|
||
|
/**
|
||
|
* @var array
|
||
|
*/
|
||
|
protected array $form = ['name','key','status','description'];
|
||
|
|
||
|
/**
|
||
|
* @var array
|
||
|
*/
|
||
|
public array $searchable = [
|
||
|
'name' => 'like',
|
||
|
'key' => 'like',
|
||
|
'status' => '=',
|
||
|
];
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 字典值集合
|
||
|
*
|
||
|
* @return HasMany
|
||
|
*/
|
||
|
public function values(): HasMany
|
||
|
{
|
||
|
return $this->hasMany(DictionaryValues::class, 'dic_id', 'id');
|
||
|
}
|
||
|
}
|