UserShopInfoModel.php 913 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. /*
  3. * To change this license header, choose License Headers in Project Properties.
  4. * To change this template file, choose Tools | Templates
  5. * and open the template in the editor.
  6. */
  7. namespace loyalsoft;
  8. /**
  9. * Description of UserShopInfoModel
  10. * 商城相关数据
  11. * @author Administrator
  12. */
  13. class UserShopInfoModel extends Object_ext {
  14. //put your code here
  15. /**
  16. * 已购每日礼包集合
  17. * @var []
  18. */
  19. public $purchasedDailyLimitPackages = array();
  20. /**
  21. * 已购每周礼包集合
  22. * @var []
  23. */
  24. public $purchasedWeeklyLimitPackages = array();
  25. /**
  26. * 已购每月礼包集合
  27. * @var []
  28. */
  29. public $purchasedMonthlyLimitPackages = array();
  30. /**
  31. * @var int 普通月卡购买时间戳
  32. */
  33. public $monthlyVIP1_ts = 0;
  34. /**
  35. * @var int 至尊月卡购买时间戳
  36. */
  37. public $monthlyVIP2_ts = 0;
  38. }