19 lines
321 B
PHP
19 lines
321 B
PHP
<?php
|
|
|
|
namespace App\Constants;
|
|
|
|
use Hyperf\Constants\Annotation\Constants;
|
|
|
|
#[Constants]
|
|
class ApiCode extends ReturnCode
|
|
{
|
|
/**
|
|
* @Message("登录失败")
|
|
*/
|
|
public const int LOGIN_ERROR = 10001;
|
|
|
|
/**
|
|
* @Message("登录token已失效")
|
|
*/
|
|
public const int LOGIN_TOKEN_ERROR = 10002;
|
|
} |