17 lines
312 B
PHP
17 lines
312 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Constants\Wechat;
|
|
|
|
use Hyperf\Constants\AbstractConstants;
|
|
use Hyperf\Constants\Annotation\Constants;
|
|
|
|
#[Constants]
|
|
class AuthErrorCode extends AbstractConstants
|
|
{
|
|
/**
|
|
* @Message("请传入微信Code")
|
|
*/
|
|
public const CODE_EMPTY_ERROR = 2000001;
|
|
} |