feat: 添加角色分页/详情/新增/更新/删除接口

This commit is contained in:
2025-02-25 18:14:52 +08:00
parent fc0f331f29
commit 8c4d2bf711
9 changed files with 321 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
<?php
namespace app\admin\exception;
class InvalidOperateException extends \Exception
{
public function __construct($message = '', $code = 0, ?\Throwable $previous = null)
{
parent::__construct($message, $code, $previous);
}
}