修正分页

This commit is contained in:
2023-03-11 15:00:25 +08:00
parent b7be7e9a79
commit 9030031041
5 changed files with 45 additions and 8 deletions
+11
View File
@@ -92,4 +92,15 @@ class PatientOrderController extends AbstractController
$data = $PatientOrderService->getPatientProductOrderList();
return $this->response->json($data);
}
/**
* 获取药品订单详情
* @return ResponseInterface
*/
public function getPatientProductOrderInfo(): ResponseInterface
{
$PatientOrderService = new PatientOrderService();
$data = $PatientOrderService->getPatientProductOrderInfo();
return $this->response->json($data);
}
}