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.

29 lines
701 B

5 years ago
  1. <?php
  2. namespace App\Constants\v3;
  3. use Hyperf\Constants\AbstractConstants;
  4. class ErrorCode extends AbstractConstants
  5. {
  6. /************************************/
  7. /* 应用或系统相关,参考HTTP STATUS */
  8. /************************************/
  9. /**
  10. * @Message("服务器内部错误")
  11. */
  12. const SERVER_ERROR=500;
  13. /************************************/
  14. /* 订单相关 601-650 */
  15. /************************************/
  16. /************************************/
  17. /* 支付相关 651-700 */
  18. /************************************/
  19. /************************************/
  20. /* 用户相关 701-750 */
  21. /************************************/
  22. }