| | |
| | | import org.springblade.mdm.flow.service.FlowCommonService; |
| | | import org.springblade.mdm.flow.service.FlowTransferService; |
| | | import org.springblade.mdm.flow.vo.FlowVO; |
| | | import org.springblade.mdm.gkw.programnode.vo.ProgramNodeVO; |
| | | import org.springblade.system.feign.IUserSearchClient; |
| | | import org.springblade.system.pojo.entity.User; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | |
| | | } |
| | | |
| | | /** |
| | | * 待办任务列表页 |
| | | * 处理人下拉数据 |
| | | */ |
| | | @GetMapping("flow-user-list") |
| | | @ApiOperationSupport(order = 3) |
| | | @Operation(summary = "用户下拉数据", description = "用户下拉数据") |
| | | @Operation(summary = "处理人下拉数据", description = "处理人下拉数据") |
| | | public R<List<MdmUser>> flowUserList(@Parameter(description = "部门ID") String deptId, String taskId) { |
| | | |
| | | return R.data(mdmUserService.listByDeptAndRoleAlias()); |
| | | } |
| | | |
| | | @GetMapping("flow-user-tree") |
| | | @ApiOperationSupport(order = 3) |
| | | @Operation(summary = "处理人下拉数据-树形", description = "处理人下拉数据") |
| | | public R<List<ProgramNodeVO>> flowUserTree(@Parameter(description = "部门ID") String deptId, String taskId) { |
| | | return R.data(mdmUserService.flowUserTree()); |
| | | } |
| | | |
| | | /** |
| | | * 上一步审批人查询 |
| | | */ |