| | |
| | | import org.springblade.core.tool.utils.StringUtil; |
| | | import org.springblade.mdm.flow.service.FlowBusinessService; |
| | | import org.springblade.mdm.flow.vo.FlowVO; |
| | | import org.springblade.system.feign.IUserClient; |
| | | import org.springblade.system.feign.IUserSearchClient; |
| | | import org.springblade.system.pojo.entity.User; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import java.time.LocalDate; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | @Slf4j |
| | |
| | | private TaskService taskService; |
| | | @Autowired |
| | | private FlowBusinessService businessService; |
| | | |
| | | @Autowired |
| | | private IUserSearchClient userSearchClient; |
| | | /** |
| | | * 待办任务列表页 |
| | | */ |
| | |
| | | return R.success("流程转派成功"); |
| | | } |
| | | |
| | | /** |
| | | * 待办任务列表页 |
| | | */ |
| | | @GetMapping("flow-user-list") |
| | | @ApiOperationSupport(order = 3) |
| | | @Operation(summary = "用户下拉数据", description = "用户下拉数据") |
| | | public R<List<User>> flowUserList(@Parameter(description = "部门ID") String deptId) { |
| | | return userSearchClient.listByDept(deptId); |
| | | |
| | | } |
| | | } |