修改 获取患者优惠卷列表 ,增加问诊类型字段

This commit is contained in:
2023-11-08 09:32:28 +08:00
parent e9df0ebd74
commit 872edba2c4
6 changed files with 16 additions and 19 deletions
+3 -3
View File
@@ -43,13 +43,13 @@ class UserPatientController extends AbstractController
* @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface
*/
public function getPatientCouponlist(): ResponseInterface
public function getPatientCouponList(): ResponseInterface
{
$request = $this->container->get(UserPatientRequest::class);
$request->scene('getPatientCouponlist')->validateResolved();
$request->scene('getPatientCouponList')->validateResolved();
$UserPatientService = new UserPatientService();
$data = $UserPatientService->getPatientCouponlist();
$data = $UserPatientService->getPatientCouponList();
return $this->response->json($data);
}