52 lines
1.1 KiB
PHP
52 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\Permissions\Models;
|
|
|
|
use Catch\Base\CatchModel as Model;
|
|
|
|
/**
|
|
* @property $role_name
|
|
* @property $identify
|
|
* @property $parent_id
|
|
* @property $description
|
|
* @property $data_range
|
|
* @property $creator_id
|
|
* @property $created_at
|
|
* @property $updated_at
|
|
* @property $deleted_at
|
|
*/
|
|
class RolesModel extends Model
|
|
{
|
|
protected $table = 'roles';
|
|
|
|
protected $fillable = ['id', 'role_name', 'identify', 'parent_id', 'description', 'data_range', 'creator_id', 'created_at', 'updated_at', 'deleted_at'];
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected array $fieldsInList = ['id', 'role_name','identify','parent_id','description','data_range', 'created_at', 'updated_at'];
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected array $form = ['role_name','identify','parent_id','description','data_range'];
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
public array $searchable = [
|
|
'role_name' => 'like',
|
|
];
|
|
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getList(): mixed
|
|
{
|
|
return self::query()->select($this->fieldsInList)->quickSearch()->get()->toTree();
|
|
}
|
|
}
|