删除检测订单

This commit is contained in:
2023-08-04 11:30:18 +08:00
parent 7bcf4e9fb7
commit 20faf6f59e
2 changed files with 49 additions and 0 deletions
+11
View File
@@ -263,4 +263,15 @@ class PatientOrderController extends AbstractController
$data = $PatientOrderService->getPatientDetectionOrderInfo();
return $this->response->json($data);
}
/**
* 删除检测订单
* @return ResponseInterface
*/
public function deletePatientDetectionOrder(): ResponseInterface
{
$PatientOrderService = new PatientOrderService();
$data = $PatientOrderService->deletePatientDetectionOrder();
return $this->response->json($data);
}
}