| | |
| | | import org.springblade.core.tool.utils.StringUtil; |
| | | import org.springblade.flow.core.pojo.entity.BladeFlow; |
| | | import org.springblade.mdm.flow.service.FlowBusinessService; |
| | | import org.springblade.mdm.flow.vo.TaskTraceVO; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import java.util.Collections; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | @Slf4j |
| | |
| | | @GetMapping("overtime-list") |
| | | @ApiOperationSupport(order = 3) |
| | | @Operation(summary = "超时查询", description = "查询所有超时任务") |
| | | public R<IPage<BladeFlow>> todoList(@Parameter(description = "执行人员") String assigneeName, @Parameter(description = "关键字") String keyword, Query query) { |
| | | public R<IPage<BladeFlow>> overtimeList(@Parameter(description = "执行人员") String assigneeName, @Parameter(description = "关键字") String keyword, Query query) { |
| | | IPage<BladeFlow> pages = businessService.selectOvertimePage(Condition.getPage(query), assigneeName,keyword); |
| | | return R.data(pages); |
| | | } |
| | | |
| | | @GetMapping("process-trace") |
| | | public R<List<TaskTraceVO>> processTrace(long processInstanceId){ |
| | | return R.data(Collections.emptyList()); |
| | | } |
| | | |
| | | |
| | | } |