Info_Pay.php 658 B

12345678910111213141516171819202122232425262728293031323334
  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 Info_Pay
  10. *
  11. * @author cyzhao
  12. */
  13. class Info_Pay extends Object_ext {
  14. /**
  15. * 首冲礼包领取标志
  16. * @var type
  17. */
  18. public $firstRechage = 0;
  19. /**
  20. * 构造函数
  21. * @param type $args
  22. */
  23. public function __construct($args = null) {
  24. if($args == null){
  25. } else {
  26. parent::__construct($args);
  27. }
  28. }
  29. }