This commit is contained in:
2023-03-17 19:46:31 +08:00
parent 7e7b220a2b
commit 3f72c02b9f
7 changed files with 133 additions and 10 deletions
@@ -71,4 +71,15 @@ class UserPharmacistController extends AbstractController
$data = $UserPharmacistService->putPrescriptionVerify();
return $this->response->json($data);
}
/**
* 药师基本资料
* @return ResponseInterface
*/
public function getPharmacistInfo(): ResponseInterface
{
$UserPharmacistService = new UserPharmacistService();
$data = $UserPharmacistService->getPharmacistInfo();
return $this->response->json($data);
}
}