From 6039441e249e09fb13723fef8df4f2115909a5d3 Mon Sep 17 00:00:00 2001 From: wuchunlei Date: Mon, 14 Jul 2025 10:25:20 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8C=BB=E6=A1=88=E6=94=B6=E9=9B=86=E6=A0=87?= =?UTF-8?q?=E7=AD=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../master/controller/MedicalRecordsController.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/peanut/modules/master/controller/MedicalRecordsController.java b/src/main/java/com/peanut/modules/master/controller/MedicalRecordsController.java index 764c0744..c0de72de 100644 --- a/src/main/java/com/peanut/modules/master/controller/MedicalRecordsController.java +++ b/src/main/java/com/peanut/modules/master/controller/MedicalRecordsController.java @@ -134,8 +134,8 @@ public class MedicalRecordsController { return R.ok(); } - @RequestMapping("/unbindCourseAndMedical") - public R unbindCourseAndMedical(@RequestBody MedicalRecordsToLabel toLabel){ + @RequestMapping("/unbindMedicalRecordsAndLabel") + public R unbindMedicalRecordsAndLabel(@RequestBody MedicalRecordsToLabel toLabel){ boolean b = toLabelService.removeById(toLabel.getId()); if(b){ return R.ok(); @@ -144,8 +144,8 @@ public class MedicalRecordsController { } } - @RequestMapping("/updateCourseToMedicalSort") - public R updateCourseToMedicalSort(@RequestBody MedicalRecordsToLabel toLabel){ + @RequestMapping("/updateMedicalRecordsToLabelSort") + public R updateMedicalRecordsToLabelSort(@RequestBody MedicalRecordsToLabel toLabel){ toLabelService.updateById(toLabel); return R.ok(); }