From 475734b8d720a928bdaa8243441d59e314ade959 Mon Sep 17 00:00:00 2001 From: 16639036659 <577530412@qq.com> Date: 星期五, 25 八月 2023 10:40:32 +0800 Subject: [PATCH] 时间问题修改 --- src/main/java/com/ruoyi/project/tr/hiddenDangerCheck/controller/DangerRectifyController.java | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/ruoyi/project/tr/hiddenDangerCheck/controller/DangerRectifyController.java b/src/main/java/com/ruoyi/project/tr/hiddenDangerCheck/controller/DangerRectifyController.java index 6b8d46c..a021ed0 100644 --- a/src/main/java/com/ruoyi/project/tr/hiddenDangerCheck/controller/DangerRectifyController.java +++ b/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(); } + } -- Gitblit v1.9.2