医案收集标签

This commit is contained in:
wuchunlei
2025-07-14 10:25:20 +08:00
parent 97c05c36c9
commit 6039441e24

View File

@@ -134,8 +134,8 @@ public class MedicalRecordsController {
return R.ok(); return R.ok();
} }
@RequestMapping("/unbindCourseAndMedical") @RequestMapping("/unbindMedicalRecordsAndLabel")
public R unbindCourseAndMedical(@RequestBody MedicalRecordsToLabel toLabel){ public R unbindMedicalRecordsAndLabel(@RequestBody MedicalRecordsToLabel toLabel){
boolean b = toLabelService.removeById(toLabel.getId()); boolean b = toLabelService.removeById(toLabel.getId());
if(b){ if(b){
return R.ok(); return R.ok();
@@ -144,8 +144,8 @@ public class MedicalRecordsController {
} }
} }
@RequestMapping("/updateCourseToMedicalSort") @RequestMapping("/updateMedicalRecordsToLabelSort")
public R updateCourseToMedicalSort(@RequestBody MedicalRecordsToLabel toLabel){ public R updateMedicalRecordsToLabelSort(@RequestBody MedicalRecordsToLabel toLabel){
toLabelService.updateById(toLabel); toLabelService.updateById(toLabel);
return R.ok(); return R.ok();
} }