mirror of
https://gitee.com/ctexthuang/hyperf_rbac_framework_server_ctexthuang.git
synced 2025-12-25 17:07:49 +08:00
20 lines
399 B
PHP
20 lines
399 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 LOGIN_ERROR = 10001;
|
|
|
|
#[Message("验证已过期")]
|
|
public const int LOGIN_TOKEN_ERROR = 10002;
|
|
}
|