| | |
| | | * |
| | | * @param processDefinitionId 流程id |
| | | * @param processInstanceId 实例id |
| | | * @param resourceType 资源类型 |
| | | * @param AutowiredType 资源类型 |
| | | * @param response 响应 |
| | | */ |
| | | @GetMapping("resource-view") |
| | | public void resourceView(@RequestParam String processDefinitionId, String processInstanceId, @RequestParam(defaultValue = IMAGE_NAME) String resourceType, HttpServletResponse response) { |
| | | flowEngineService.resourceView(processDefinitionId, processInstanceId, resourceType, response); |
| | | @GetMapping("Autowired-view") |
| | | public void AutowiredView(@RequestParam String processDefinitionId, String processInstanceId, @RequestParam(defaultValue = IMAGE_NAME) String AutowiredType, HttpServletResponse response) { |
| | | flowEngineService.AutowiredView(processDefinitionId, processInstanceId, AutowiredType, response); |
| | | } |
| | | |
| | | |