| | |
| | | import com.ruoyi.system.service.ISysUserService; |
| | | import com.ruoyi.system.service.StateProcessModuleService; |
| | | import com.ruoyi.system.service.StateProcessTemplateService; |
| | | import com.ruoyi.system.vo.ProcessDetailVO; |
| | | import com.ruoyi.system.vo.ProcessTaskListVO; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | |
| | | return AjaxResult.success(); |
| | | } |
| | | |
| | | //审核拒绝 |
| | | //审核详情 |
| | | @ApiOperation("审核详情") |
| | | @GetMapping("/detail") |
| | | public AjaxResult<TContract> detail(@RequestParam String taskId) { |
| | | processTemplateService.detail(taskId); |
| | | return AjaxResult.success(); |
| | | public AjaxResult<ProcessDetailVO> detail(@RequestParam String taskId) { |
| | | ProcessDetailVO detail = processTemplateService.detail(taskId); |
| | | return AjaxResult.success(detail); |
| | | } |
| | | |
| | | } |