12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace loyalsoft;
- /**
- * 任务参数,用于任务进度判定逻辑
- */
- class Ins_TaskParams {
- public function __construct($_taskType, $_canshu1 = null, $_canshu2 = null) {
- $this->taskType = $_taskType;
- $this->canshu1 = $_canshu1;
- $this->canshu2 = $_canshu2;
- }
- /**
- * @var int 任务类型
- */
- public $taskType;
- /**
- * @var number 参数1
- */
- public $canshu1;
- /**
- * @var number 参数2
- */
- public $canshu2;
- }
|