14 lines
218 B
PHP
14 lines
218 B
PHP
<?php
|
|
|
|
namespace App\Constants;
|
|
|
|
use Hyperf\Constants\Annotation\Constants;
|
|
|
|
#[Constants]
|
|
class AdminCode extends ReturnCode
|
|
{
|
|
/**
|
|
* @Message("登录失败")
|
|
*/
|
|
public const int LOGIN_ERROR = 10001;
|
|
} |