新增阿里云oss上传文件

This commit is contained in:
2023-03-02 16:51:47 +08:00
parent d51d5355a0
commit 186f92c4ea
11 changed files with 188 additions and 159 deletions
+11
View File
@@ -276,4 +276,15 @@ class UserDoctorController extends AbstractController
$data = $UserDoctorService->addPrescription();
return $this->response->json($data);
}
/**
* 获取医生名片
* @return ResponseInterface
*/
public function getDoctorInfoCard(): ResponseInterface
{
$UserDoctorService = new UserDoctorService();
$data = $UserDoctorService->getDoctorInfoCard();
return $this->response->json($data);
}
}