调整问诊配置,新增随访包接口等

This commit is contained in:
2024-04-02 17:06:20 +08:00
parent 621b53225d
commit 8784a93898
10 changed files with 844 additions and 94 deletions
+16
View File
@@ -29,4 +29,20 @@ class SystemController extends AbstractController
$data = $SystemService->getSystemInquiryTime();
return $this->response->json($data);
}
/**
* 获取系统问诊配置
* @return ResponseInterface
* @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface
*/
public function getSystemInquiryConfig(): ResponseInterface
{
$request = $this->container->get(SystemRequest::class);
$request->scene('getSystemInquiryConfig')->validateResolved();
$SystemService = new SystemService();
$data = $SystemService->getSystemInquiryConfig();
return $this->response->json($data);
}
}