删除最后一份问诊病例接口

This commit is contained in:
2023-05-09 11:07:32 +08:00
parent 5eb743a052
commit 47a9976326
3 changed files with 0 additions and 98 deletions
-24
View File
@@ -1,24 +0,0 @@
<?php
namespace App\Controller;
use App\Services\PatientCaseService;
use Psr\Http\Message\ResponseInterface;
/**
* 病例
*/
class PatientCaseController extends AbstractController
{
/**
* 获取患者最后一份问诊病例
* @return ResponseInterface
*/
public function getLastCase(): ResponseInterface
{
return $this->response->json(["暂停使用"]);
$PatientCaseService = new PatientCaseService();
$data = $PatientCaseService->getLastCase();
return $this->response->json($data);
}
}