feat: auth

This commit is contained in:
2024-10-27 18:08:06 +08:00
parent 4b12825a9a
commit 10037e11fd
9 changed files with 428 additions and 1 deletions

View File

@@ -0,0 +1,41 @@
<?php
/**
* This service file is part of item.
*
* @author ctexthuang
* @contact ctexthuang@qq.com
*/
declare(strict_types=1);
namespace App\Service\Admin\User;
use App\Service\Admin\BaseService;
class RoleMenuService extends BaseService
{
public function handle()
{
return $this->return->success();
}
public function add()
{
return $this->return->success();
}
public function edit()
{
return $this->return->success();
}
public function del()
{
return $this->return->success();
}
public function details()
{
return $this->return->success();
}
}