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