From bf25cb25621bd81f0f2d261920033a5bb97f8a20 Mon Sep 17 00:00:00 2001 From: "15881625488@163.com" <15881625488@163.com> Date: Thu, 1 Jan 2026 17:29:48 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A[=E8=AF=95=E9=AA=8C=E7=AE=A1?= =?UTF-8?q?=E7=90=86][=E5=A1=AB=E6=8A=A5=E8=A1=A8=E5=8D=95]=E4=BC=98?= =?UTF-8?q?=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/hxhq/business/controller/StudyFormFillController.java | 10 +++++----- .../java/com/hxhq/business/service/IStudyFormFillService.java | 4 ++-- .../hxhq/business/service/impl/StudyFormFillServiceImpl.java | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/StudyFormFillController.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/StudyFormFillController.java index dabb916..aefc82b 100644 --- a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/StudyFormFillController.java +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/StudyFormFillController.java @@ -97,12 +97,12 @@ public class StudyFormFillController extends BaseController { /** - * 审核废止 + * 确认废止 */ - @RequiresPermissions("business:studyFormFill:shfz") - @PostMapping("/shfz") - public AjaxResult shfz(@RequestBody StudyFormFillShfzForm form) { - studyFormFillService.shfz(form); + @RequiresPermissions("business:studyFormFill:qrfz") + @PostMapping("/qrfz") + public AjaxResult qrfz(@RequestBody StudyFormFillShfzForm form) { + studyFormFillService.qrfz(form); return AjaxResult.success("操作成功"); } diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IStudyFormFillService.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IStudyFormFillService.java index fd781b7..1f8adf7 100644 --- a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IStudyFormFillService.java +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IStudyFormFillService.java @@ -47,10 +47,10 @@ public interface IStudyFormFillService extends IService /** - * 审核废止 + * 确认废止 * @param form */ - public void shfz(StudyFormFillShfzForm form); + public void qrfz(StudyFormFillShfzForm form); /** diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/StudyFormFillServiceImpl.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/StudyFormFillServiceImpl.java index 5dfa72b..6da70d9 100644 --- a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/StudyFormFillServiceImpl.java +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/StudyFormFillServiceImpl.java @@ -169,7 +169,7 @@ public class StudyFormFillServiceImpl extends ServiceImpl