新增医生账户模型,修改省市区接口返回结构
This commit is contained in:
@@ -142,4 +142,15 @@ class UserDoctorController extends AbstractController
|
||||
$data = $UserDoctorService->getPrescriptionList();
|
||||
return $this->response->json($data);
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取医生个人中心数据
|
||||
* @return ResponseInterface
|
||||
*/
|
||||
public function getDoctorCenter(): ResponseInterface
|
||||
{
|
||||
$UserDoctorService = new UserDoctorService();
|
||||
$data = $UserDoctorService->getDoctorCenter();
|
||||
return $this->response->json($data);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user