12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- namespace loyalsoft;
- /**
- * Description of missCourseItem
- *
- * @author cyzhao
- */
- class ins_missCourseItem extends Object_ext{
- /**
- * 任务id
- */
- public $missCardId = 0;
- /**
- * 这个id== 背包里的uid;实际就是为了区别多个相同的卡的;默认为0;一旦这个卡被激活就有固定值了
- */
- public $indexId=0;
- /**
- * 任务状态
- */
- public $type =1;
-
- public function __construct($args=null) {
- parent::__construct($args);
- }
-
- public function initialize($missId) {
- $this->missCardId = $missId;
- $this->type = Enum_TaskCardStateType::ing;
- }
- }
|