getDoctorPharmacyList(); return $this->response->json($data); } /** * 设置医生默认药房 */ public function setDoctorDefaultPharmacy(): ResponseInterface { $request = $this->container->get(DoctorPharmacyRequest::class); $request->scene('setDefault')->validateResolved(); $service = new DoctorPharmacyService(); $data = $service->setDoctorDefaultPharmacy(); return $this->response->json($data); } /** * 获取平台公开正常运营的药房列表 */ public function getPublicPharmacyList(): ResponseInterface { $service = new DoctorPharmacyService(); $data = $service->getPublicPharmacyList(); return $this->response->json($data); } }