| | |
| | | } |
| | | } |
| | | |
| | | @GetMapping("/edit/{id}") |
| | | @GetMapping("/edit/{indexId}") |
| | | public String edit(@PathVariable("indexId") Long indexId, ModelMap mmap) |
| | | { |
| | | TbSpecialCheckTaskLog specialCheckTaskLogByIndexId = specialCheckTaskService.getSpecialCheckTaskLogByIndexId(indexId); |
| | | mmap.put("specialCheckTaskLog",specialCheckTaskLogByIndexId); |
| | | |
| | | List<RiskList> riskList = riskListService.listHazardSource(); |
| | | mmap.put("hazardList", riskList); |
| | | List<TbBaseCheckTask> listResult = tbBaseCheckService.listTbBaseCheckTask(); |
| | | mmap.put("tbBaseCheckTask", listResult); |
| | | return prefix + "/edit"; |