双重预防项目-国泰新华二开定制版
16639036659
2023-08-25 475734b8d720a928bdaa8243441d59e314ade959
src/main/java/com/ruoyi/project/tr/hiddenDangerCheck/controller/DangerRectifyController.java
@@ -151,14 +151,15 @@
        return prefix + "/detailDangerRectify";
    }
    /**
     * 隐患整改延期
     * 隐患整改延期 - 保存
     */
    @Log(title = "隐患上报", businessType = BusinessType.DELETE)
    @PostMapping("/rectifyTimeOut")
    @ResponseBody
    @Transactional
    public AjaxResult rectifyTimeOut(HiddenDangerCheckPoint hdcp) {
    public AjaxResult rectifyTimeOutSave(HiddenDangerCheckPoint hdcp) {
        if(ObjectUtils.isEmpty(hdcp.getId())){
            return AjaxResult.error("id不能为空");
        }
@@ -172,4 +173,5 @@
        return AjaxResult.success();
    }
}