可提现问诊订单列表

This commit is contained in:
2023-02-24 09:46:50 +08:00
parent ac529a570f
commit e6afaf0913
4 changed files with 98 additions and 5 deletions
@@ -57,4 +57,15 @@ class DoctorAccountController extends AbstractController
$data = $DoctorAccountService->getDoctorWithdrawal();
return $this->response->json($data);
}
/**
* 获取可提现问诊订单列表
* @return ResponseInterface
*/
public function getDoctorWithdrawalOrderList(): ResponseInterface
{
$DoctorAccountService = new DoctorAccountService();
$data = $DoctorAccountService->getDoctorWithdrawalOrderList();
return $this->response->json($data);
}
}