取消检测订单,取消订单订阅消息推送
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user