| | |
| | | * 隐患核查--核查 |
| | | */ |
| | | @Log(title = "隐患核查--核查") |
| | | @GetMapping("/nextConfirm/{id}") |
| | | @GetMapping("/editNextConfirm/{id}") |
| | | public String editNextConfirm(@PathVariable("id") Long id, ModelMap mmap) { |
| | | //隐患排查实体 |
| | | HiddenDangerCheckPoint hiddenDangerCheckPoint = hiddenDangerCheckPointService.selectHiddenDangerCheckPointById(Long.valueOf(id)); |
| | |
| | | * 隐患核查--下一个核查人 |
| | | */ |
| | | @Log(title = "隐患核查--下一个核查人") |
| | | @PostMapping("/nextConfirm") |
| | | public AjaxResult nextConfirm(HiddenDangerCheckPoint hdcp) { |
| | | @PostMapping("/editNextConfirmSave") |
| | | public AjaxResult editNextConfirmSave(HiddenDangerCheckPoint hdcp) { |
| | | //获取当前更新用户信息 |
| | | User sysUser = getSysUser(); |
| | | |