Enum_Recharge.php 648 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. namespace loyalsoft;
  3. /**
  4. * Description of Enum_Recharge
  5. *
  6. * @author cyzhao
  7. */
  8. class Enum_Recharge extends Enum {
  9. /**
  10. * 直接设置某个值
  11. */
  12. const LimitBuy = 1;
  13. /*
  14. * 月卡
  15. */
  16. const monthRecharge = 2;
  17. /*
  18. * 充值
  19. */
  20. const recharge = 3;
  21. /*
  22. * 每日特惠
  23. */
  24. const DaliySpecialPackages = 4;
  25. //限时活动礼包
  26. const limitTsActiveGift = 5;
  27. /*
  28. * 限时随机礼包
  29. */
  30. const limitTsRandGift = 6;
  31. /*
  32. * 充值返利
  33. */
  34. const RechargeRebate = 7;
  35. const FirstRecharge = 8;
  36. }