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.

33 lines
819 B

6 years ago
6 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. /************************************/
  23. /* 定位相关 751-800 */
  24. /************************************/
  25. }