取消检测订单,取消订单订阅消息推送

This commit is contained in:
2023-08-04 13:52:03 +08:00
parent 20faf6f59e
commit a2821171ef
5 changed files with 280 additions and 2 deletions
+13
View File
@@ -274,4 +274,17 @@ class PatientOrderController extends AbstractController
$data = $PatientOrderService->deletePatientDetectionOrder();
return $this->response->json($data);
}
/**
* 取消检测订单
* @return ResponseInterface
* @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface
*/
public function putCancelPatientDetectionOrder(): ResponseInterface
{
$PatientOrderService = new PatientOrderService();
$data = $PatientOrderService->putCancelPatientDetectionOrder();
return $this->response->json($data);
}
}