Files
hyperf_service/app/Constants/ApiCode.php
2025-01-23 16:56:24 +08:00

29 lines
542 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;
/**
* @Message("商品不存在")
*/
public const int ORDER_GOOD_IN_EXISTENCE = 20001;
/**
* @Message("商品库存不足")
*/
public const int ORDER_GOOD_INSUFFICIENT_STOCK = 20002;
}