修正返回值bigint被转义问题
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
@@ -153,4 +153,6 @@ class UserDoctorController extends AbstractController
|
||||
$data = $UserDoctorService->getDoctorCenter();
|
||||
return $this->response->json($data);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user