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.

48 lines
727 B

  1. <?php
  2. namespace App\Constants\v3;
  3. use Hyperf\Constants\AbstractConstants;
  4. use Hyperf\Constants\Annotation\Constants;
  5. /**
  6. * @Constants
  7. */
  8. class Store extends AbstractConstants
  9. {
  10. /**
  11. * @Message("营业中")
  12. */
  13. const IS_OPEN_YES = 1;
  14. /**
  15. * @Message("歇业中")
  16. */
  17. const IS_OPEN_NO = 2;
  18. /**
  19. * @Message("入驻审核中")
  20. */
  21. const STATUS_EXAMINING = 1;
  22. /**
  23. * @Message("入驻成功")
  24. */
  25. const STATUS_PASS = 2;
  26. /**
  27. * @Message("入驻被拒")
  28. */
  29. const STATUS_REFUSE = 3;
  30. /**
  31. * @Message("入驻已过期")
  32. */
  33. const STATUS_EXPIRED = 4;
  34. /**
  35. * @Message("商家已休息")
  36. */
  37. const IS_REST_NO = 0;
  38. }