Info_Gem.php 738 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. namespace loyalsoft;
  3. /*
  4. * To change this license header, choose License Headers in Project Properties.
  5. * To change this template file, choose Tools | Templates
  6. * and open the template in the editor.
  7. */
  8. /**
  9. * Description of Ins_Gem
  10. *
  11. * @author cyzhao
  12. */
  13. class Info_Gem extends Object_ext{
  14. /**
  15. * 研究等级
  16. * @var type
  17. */
  18. public $level = 1;
  19. /**
  20. * 构造函数
  21. * @param type $args
  22. */
  23. public function __construct($args = null) {
  24. if($args == null){
  25. //$this->compMissCardDic = new \stdClass();
  26. //$this->ingTaskCardDic = new \stdClass();
  27. } else {
  28. parent::__construct($args);
  29. }
  30. }
  31. }