新增创建检测问诊订单接口,修改回调数据

This commit is contained in:
2023-08-25 18:12:15 +08:00
parent bdd7492670
commit 48f180dbb1
5 changed files with 358 additions and 137 deletions
+12
View File
@@ -107,4 +107,16 @@ class DetectionController extends AbstractController
$data = $detectionService->bindDetectionTube();
return $this->response->json($data);
}
/**
* 创建检测问诊订单
* @return ResponseInterface
*/
public function addDetectionInquiryOrder(): ResponseInterface
{
$detectionService = new DetectionService();
$data = $detectionService->addDetectionInquiryOrder();
return $this->response->json($data);
}
}