17 lines
312 B
PHP
17 lines
312 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use App\Models\Keyword;
|
|
use Slowlyo\OwlAdmin\Services\AdminService;
|
|
|
|
/**
|
|
* 字典管理
|
|
*
|
|
* @method Keyword getModel()
|
|
* @method Keyword|\Illuminate\Database\Query\Builder query()
|
|
*/
|
|
class KeywordService extends AdminService
|
|
{
|
|
protected string $modelName = Keyword::class;
|
|
} |