mirror of
https://gitee.com/ctexthuang/hyperf-micro-svc.git
synced 2026-02-08 10:20:16 +08:00
18 lines
320 B
PHP
18 lines
320 B
PHP
<?php
|
|
/**
|
|
* This service file is part of item.
|
|
*
|
|
* @author ctexthuang
|
|
* @contact ctexthuang@qq.com
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Repository;
|
|
|
|
use App\Model\AdminRole;
|
|
|
|
final class AdminRoleRepository extends BaseRepository
|
|
{
|
|
public function __construct(protected readonly AdminRole $model) {}
|
|
} |