Info_UserShop.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?php
  2. namespace loyalsoft;
  3. /**
  4. * Description of UserShopInfoModel
  5. * 商城相关数据
  6. * @author Administrator
  7. */
  8. class Info_UserShop extends Object_ext {
  9. //put your code here
  10. /**
  11. * 已购每日礼包集合
  12. * @var []
  13. */
  14. public $purchasedDailyLimitPackages = array();
  15. /**
  16. * 已购每周礼包集合
  17. * @var []
  18. */
  19. public $purchasedWeeklyLimitPackages = array();
  20. /**
  21. * 已购每月礼包集合
  22. * @var []
  23. */
  24. public $purchasedMonthlyLimitPackages = array();
  25. /**
  26. * @var int 普通月卡购买时间戳
  27. */
  28. public $monthlyVIP1_ts = 0;
  29. /**
  30. * @var int 至尊月卡购买时间戳
  31. */
  32. public $monthlyVIP2_ts = 0;
  33. /**
  34. * 每日特惠礼包领取记录
  35. * @var type
  36. */
  37. public $daliySpecialPackages = array();
  38. /**
  39. * 重置每日特惠时间
  40. * @var type
  41. */
  42. public $daliySpecialClear_ts = 0;
  43. /**
  44. * 每日特惠卡周卡开始时间
  45. * @var type
  46. */
  47. public $daliySpecial_ts = 0;
  48. /*
  49. * 充值返利奖品记录
  50. */
  51. public $rechargeRebateRewardsList = array();
  52. /*
  53. * 限时活动--礼包领取记录
  54. */
  55. public $limitTsRewardsList = array();
  56. }