feat: auth
This commit is contained in:
41
app/Service/Admin/User/RoleMenuService.php
Normal file
41
app/Service/Admin/User/RoleMenuService.php
Normal 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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user