新增结束问诊接口

This commit is contained in:
2023-03-25 15:18:57 +08:00
parent 88667147e8
commit 121c2c5434
5 changed files with 99 additions and 2 deletions
+11
View File
@@ -366,4 +366,15 @@ class UserDoctorController extends AbstractController
$data = $UserDoctorService->addDoctorInquiry();
return $this->response->json($data);
}
/**
* 结束问诊
* @return ResponseInterface
*/
public function putDoctorFinishInquiry(): ResponseInterface
{
$UserDoctorService = new UserDoctorService();
$data = $UserDoctorService->putDoctorFinishInquiry();
return $this->response->json($data);
}
}