123456789101112131415161718192021222324 |
- <?php
- declare(strict_types=1);
- namespace App\Constants;
- use Hyperf\Constants\AbstractConstants;
- use Hyperf\Constants\Annotation\Constants;
- class ErrorCode extends AbstractConstants
- {
-
- const SERVER_ERROR = 500;
-
- public const SUCCESS = 200;
-
- public const ERROR = 0;
- }
|