修正首页认证状态、新增银行卡

This commit is contained in:
2023-02-20 17:36:52 +08:00
parent 57bca15fb5
commit 71ad45422a
6 changed files with 178 additions and 3 deletions
+11
View File
@@ -72,4 +72,15 @@ class UserDoctorController extends AbstractController
$data = $DoctorInquiryService->putInquiryConfig();
return $this->response->json($data);
}
/**
* 获取医生银行卡
* @return ResponseInterface
*/
public function getDoctorBankCard(): ResponseInterface
{
$UserDoctorService = new UserDoctorService();
$data = $UserDoctorService->getDoctorBankCard();
return $this->response->json($data);
}
}