package com.dl.workflow.service.impl; import org.flowable.engine.RuntimeService; import org.flowable.engine.TaskService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import javax.annotation.Resource; @Service public class TestServiceImpl { /** * 查询运行信息 */ @Autowired private RuntimeService runtimeService; @Resource private TaskService taskService; }