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.

62 lines
1.2 KiB

  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 STORE_MONTH_SALES = 'store_m_sales_';
  22. /**
  23. * @Message("用户新订单统计")
  24. */
  25. const USER_ORDER_BADGE = 'user_order_badge_';
  26. /**
  27. * @Message("收藏店铺")
  28. */
  29. const COLLECT_STORE_USER = 'collect_store_user_';
  30. /**
  31. * @Message("用户收藏店铺数量")
  32. */
  33. const COUNT_COLLECT_STORE_USER = 'count_collect_store_user_';
  34. /**
  35. * @Message("店铺被收藏数量")
  36. */
  37. const COUNT_COLLECT_STORE = 'count_collect_store_';
  38. /**
  39. * @Message("首页分类")
  40. */
  41. const APPLET_INDEX_CATEGORY = 'applet_index_category';
  42. /**
  43. * @Message("用户信息")
  44. */
  45. const USER_INFO = 'user_info_';
  46. /**
  47. * @Message("用户活动商品限购记录")
  48. */
  49. const ACTIVITY_GOODS_BUY_RECORD = 'activity_goods_buy_record_';
  50. }