mirror of
https://gitee.com/ctexthuang/hyperf_rbac_framework_server_ctexthuang.git
synced 2025-12-25 11:22:10 +08:00
21 lines
385 B
PHP
21 lines
385 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Constants;
|
|
|
|
use Hyperf\Constants\Annotation\Constants;
|
|
use Hyperf\Constants\Annotation\Message;
|
|
use Hyperf\Constants\EnumConstantsTrait;
|
|
|
|
#[Constants]
|
|
final class AdminCode extends ResultCode
|
|
{
|
|
#[Message("账号已禁用")]
|
|
public const int DISABLED = 423;
|
|
|
|
#[Message("暂无权限")]
|
|
public const int FORBIDDEN = 403;
|
|
|
|
}
|