mirror of
https://gitee.com/ctexthuang/hyperf-micro-svc.git
synced 2026-02-08 18:30:16 +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;
|
|
|
|
}
|