Ins_Gift.php 614 B

12345678910111213141516171819202122232425262728293031323334353637
  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 Ins_Gift
  10. *
  11. * @author cyzhao
  12. */
  13. class Ins_Gift extends Object_ext{
  14. /**
  15. * 礼包id
  16. * @var type
  17. */
  18. public $giftId = 0;
  19. /**
  20. * 开始时间
  21. * @var type
  22. */
  23. public $startTs = 0;
  24. /*
  25. * 结束时间
  26. */
  27. public $endTs = 0;
  28. public function __construct($args = null) {
  29. parent::__construct($args);
  30. }
  31. }