修改消息推送,处方已开具,message_type类型,修改提现数据查询接口
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user