链街Dcat后台
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.

73 lines
1.5 KiB

5 years ago
  1. <?php
  2. namespace App\Constants\v3;
  3. /**
  4. * @Constants
  5. */
  6. class SsdbKeys
  7. {
  8. /**
  9. * @Message("短信验证码")
  10. */
  11. const VERIFY_CODE = 'verify_code_';
  12. /**
  13. * @Message("商品月销")
  14. */
  15. const GOODS_MONTH_SALES = 'goods_m_sales_';
  16. /**
  17. * @Message("商户月销")
  18. */
  19. const STORE_MONTH_SALES = 'store_m_sales_';
  20. /**
  21. * @Message("收藏店铺")
  22. */
  23. const COLLECT_STORE_USER = 'collect_store_user_';
  24. /**
  25. * @Message("用户收藏店铺数量")
  26. */
  27. const COUNT_COLLECT_STORE_USER = 'count_collect_store_user_';
  28. /**
  29. * @Message("店铺被收藏数量")
  30. */
  31. const COUNT_COLLECT_STORE = 'count_collect_store_';
  32. /**
  33. * @Message("首页分类")
  34. */
  35. const APPLET_INDEX_CATEGORY = 'applet_index_category';
  36. /**
  37. * @Message("用户信息")
  38. */
  39. const USER_INFO = 'user_info_';
  40. /**
  41. * @Message("用户活动商品限购记录")
  42. */
  43. const ACTIVITY_GOODS_BUY_RECORD = 'activity_goods_buy_record_';
  44. /**
  45. * @Message("优惠券返券活动")
  46. */
  47. const COUPON_REBATE_ACTIVITY = 'coupon_rebate_activity';
  48. /**
  49. * @Message("优惠券返券领券")
  50. */
  51. const COUPON_REBATE_RECEIVE = 'coupon_rebate_receive_';
  52. /**
  53. * @Message("优惠券返券列表")
  54. */
  55. const COUPON_REBATE_LIST = 'coupon_rebate_list_';
  56. /**
  57. * @Message("起送价")
  58. */
  59. const INTIAL_DELIVERY_AMOUNT = 'intial_delivery_amount';
  60. }