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.

49 lines
1002 B

5 years ago
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Constants;
  4. use Hyperf\Constants\AbstractConstants;
  5. use Hyperf\Constants\Annotation\Constants;
  6. /**
  7. * @Constants
  8. */
  9. class SsdbKeysPrefix extends AbstractConstants
  10. {
  11. /**
  12. * @Message("Params Token Key Prefix")
  13. */
  14. const PARAMS_TOKEN = 'params_token_';
  15. /**
  16. * @Message("Coupon rebate Key Prefix")
  17. */
  18. const COUPON_REBATE_RECEIVE = 'coupon_rebate_receive_';
  19. /**
  20. * @Message("Coupon rebate Key Prefix")
  21. */
  22. const COUPON_REBATE_FORWARD = 'coupon_rebate_forward_';
  23. /**
  24. * @Message("Coupon rebate Key Prefix")
  25. */
  26. const COUPON_REBATE_REPAY = 'coupon_rebate_repay_';
  27. /**
  28. * @Message("Coupon rebate Key Prefix")
  29. */
  30. const COUPON_REBATE_ACTIVITY = 'coupon_rebate_activity';
  31. /**
  32. * @Message("Store New User")
  33. */
  34. const STORE_NEW_USER = 'store_new_user_';
  35. /**
  36. * @Message("Coupon rebate List")
  37. */
  38. const COUPON_REBATE_LIST = 'coupon_rebate_list_';
  39. }