修改消息推送,处方已开具,message_type类型,修改提现数据查询接口

This commit is contained in:
2023-04-06 19:19:53 +08:00
parent b86c253d0f
commit 5ddc4d1c0a
6 changed files with 33 additions and 8 deletions
+7 -2
View File
@@ -50,11 +50,16 @@ class DoctorAccountController extends AbstractController
/**
* 获取提现数据
* @return ResponseInterface
* @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface
*/
public function getDoctorWithdrawal(): ResponseInterface
public function getDoctorWithdrawalInfo(): ResponseInterface
{
$request = $this->container->get(DoctorAccountRequest::class);
$request->scene('getDoctorWithdrawalInfo')->validateResolved();
$DoctorAccountService = new DoctorAccountService();
$data = $DoctorAccountService->getDoctorWithdrawal();
$data = $DoctorAccountService->getDoctorWithdrawalInfo();
return $this->response->json($data);
}