Files
hyperf_service/app/Constants/AdminCode.php
ctexthuang 3a39ff3790
Some checks are pending
Build Docker / build (push) Waiting to run
feat: command
2024-10-26 18:27:45 +08:00

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;
}