You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
701 B
30 lines
701 B
<?php
|
|
|
|
namespace App\Constants\v3;
|
|
|
|
use Hyperf\Constants\AbstractConstants;
|
|
|
|
class ErrorCode extends AbstractConstants
|
|
{
|
|
/************************************/
|
|
/* 应用或系统相关,参考HTTP STATUS */
|
|
/************************************/
|
|
/**
|
|
* @Message("服务器内部错误")
|
|
*/
|
|
const SERVER_ERROR=500;
|
|
|
|
/************************************/
|
|
/* 订单相关 601-650 */
|
|
/************************************/
|
|
|
|
|
|
/************************************/
|
|
/* 支付相关 651-700 */
|
|
/************************************/
|
|
|
|
|
|
/************************************/
|
|
/* 用户相关 701-750 */
|
|
/************************************/
|
|
}
|