删除人员体检报告
This commit is contained in:
parent
50ab019747
commit
3ab2fe439d
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue