<?php class TaskType { const ORDINARY = 0; // 普通任务 const SERIES = 1; // 多个任务串联执行 const PARALLEL = 2; // 多个任务并行执行完后才能 }