删除人员体检报告

This commit is contained in:
sxu 2025-04-25 17:52:38 +08:00
parent 50ab019747
commit 3ab2fe439d
1 changed files with 2 additions and 2 deletions

View File

@ -71,8 +71,8 @@ public class HealthMobileMedicalReportController {
@PostMapping({"/delete-medicalreport"})
// @RequiresGuest
@ApiOperation("删除人员体检报告")
public void deleteMedicalReport(Long medicalId) {
this.healthCustMedicalReportService.deleteMedicalReport(medicalId);
public void deleteMedicalReport(@RequestBody HealthCustMedicalReportEditDTO dto) {
this.healthCustMedicalReportService.deleteMedicalReport(dto.getMedicalId());
}
protected String getOpenidByHeaders(Map<String, String> headers) {