| | |
| | | import com.ycl.domain.form.ProjectProcessForm; |
| | | import com.ycl.domain.query.ProjectProcessQuery; |
| | | import com.ycl.domain.query.TaskQuery; |
| | | import com.ycl.domain.vo.CustomerTaskVO; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * @param projectId 项目id,作为业务id存入activity表 |
| | | * @return |
| | | */ |
| | | Result startProcess(String projectId, String processDefId); |
| | | Result startProcess(Long projectId, String processDefId); |
| | | |
| | | /** |
| | | * 查询任务列表 |
| | |
| | | * @return |
| | | */ |
| | | Result taskList(TaskQuery query); |
| | | |
| | | /** |
| | | * 获取所有的待办任务 |
| | | * |
| | | * @param taskName |
| | | * @param pageSize |
| | | * @param pageNum |
| | | * @param result |
| | | */ |
| | | void getAllTodoTask(String taskName, int pageSize, int pageNum, Result result); |
| | | |
| | | Result detailByProcessInsId(TaskQuery query); |
| | | |
| | | /** |
| | | * 查询是否是审批任务 |
| | | * |
| | | * @param processDefinitionId 流程定义id |
| | | * @param processDefinitionId 任务id |
| | | * @return |
| | | */ |
| | | Result taskIsAuditing(String processDefinitionId, String taskId); |
| | | } |