12345678910111213141516171819 |
- <?php
- /// @Brief 任务通知json
- ///
- class TaskNoticeJson
- {
- public $id; // 任务编号
- public $stepCount; // 步骤数
- public $stepFunc; // 步骤函数
- public $stepMsg; // 步骤消息
- public $stepReturn; // 步骤函返回结果
- public $taskMsg; // 任务消息
- public $taskReturn; // 任务返回结果
- public $taskMsgType; // 任务消息类型<参考TaskStepFuncType>
- public $stepMsgType; // 步骤消息类型
- public $taskState; // 任务状态
- // todo
- }
|