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.

36 lines
710 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 SsdbKeys extends AbstractConstants
  9. {
  10. /**
  11. * @Message("短信验证码")
  12. */
  13. const VERIFY_CODE = 'verify_code_';
  14. /**
  15. * @Message("商品月销")
  16. */
  17. const GOODS_MONTH_SALES = 'goods_m_sales_';
  18. /**
  19. * @Message("收藏店铺")
  20. */
  21. const COLLECT_STORE_USER = 'collect_store_user_';
  22. /**
  23. * @Message("用户收藏店铺数量")
  24. */
  25. const COLLECT_STORE_NUM_USER = 'collect_store_num_user_';
  26. /**
  27. * @Message("店铺被收藏数量")
  28. */
  29. const COLLECT_NUM_STORE = 'collect_num_store_';
  30. }