1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?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 Info_Task
- *
- * @author c'y'zhao
- */
- class Info_Task extends Object_ext{
- /**
- * 任务卡道具(存在叠加)
- * @var
- */
- public $taskcards;
-
- /**
- * 任务卡索引
- * @var type
- */
- public $taskIndex = 0;
-
- /**
- * 每日任务累计值
- * @var type
- */
- public $dailyTaskAccumulate = 0;
-
- /**
- * 周常任务累计值
- * @var type
- */
- public $weekTaskAccumulate = 0;
- public function initialize() {
- $this->taskcards = new \stdClass();
- }
- public function __construct($arg = null) {
- if ($arg == null) {
- $this->taskcards = new \stdClass();
- } else {
- parent::__construct($arg);
- }
- }
- }
|