修正返回值bigint被转义问题

This commit is contained in:
2023-02-23 15:11:45 +08:00
parent ebf34e28e7
commit 27288a9dd9
12 changed files with 229 additions and 46 deletions
@@ -45,4 +45,15 @@ class DoctorAccountController extends AbstractController
$data = $DoctorAccountService->getDoctorAccountInfo();
return $this->response->json($data);
}
/**
* 获取提现数据
* @return ResponseInterface
*/
public function getDoctorWithdrawal(): ResponseInterface
{
$DoctorAccountService = new DoctorAccountService();
$data = $DoctorAccountService->getDoctorWithdrawal();
return $this->response->json($data);
}
}