From 9669ea20c78304d5fbbcbe952c97b3a8a5fe936e Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期三, 03 九月 2025 10:19:13 +0800
Subject: [PATCH] 查询超时问题处理

---
 ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/HNGatherPatArchiveController.java |   33 ++++++++++++++++++++++++++++++++-
 1 files changed, 32 insertions(+), 1 deletions(-)

diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/HNGatherPatArchiveController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/HNGatherPatArchiveController.java
index 3be114b..f25b178 100644
--- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/HNGatherPatArchiveController.java
+++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/HNGatherPatArchiveController.java
@@ -38,6 +38,7 @@
 @RestController
 @RequestMapping("/smartor/hngather")
 @Api(description = "娌冲崡閲囬泦鎮h�呬俊鎭帴鍙�")
+
 public class HNGatherPatArchiveController extends BaseController {
     @Autowired
     private IHNGatherPatArchiveService ihnGatherPatArchiveService;
@@ -48,9 +49,39 @@
     @PostMapping("/hnDataGather")
     @ApiOperation("娌冲崡鏁版嵁閲囬泦")
     public AjaxResult hnDataGather(@RequestBody HnDataGatherVO hnDataGatherVO) {
-        log.info("寮�濮嬫寜澶╁悓姝ョ敤鎴锋暟鎹紝鏃堕棿鑼冨洿: {} 鍒� {}", hnDataGatherVO.getStartOutHospTime(), hnDataGatherVO.getEndOutHospTime());
+        log.info("寮�濮嬫寜澶╁悓姝ョ敤鎴锋暟鎹紝鏃堕棿鑼冨洿: {} 鍒� {}", hnDataGatherVO.getStartTime(), hnDataGatherVO.getEndTime());
         Boolean aBoolean = ihnGatherPatArchiveService.hnDataGather(hnDataGatherVO);
         return AjaxResult.success(aBoolean);
     }
 
+    /**
+     * 鏌ヨ鐤剧梾鍒楄〃鏁版嵁閲囬泦
+     */
+    @PostMapping("/selectIcd10List")
+    @ApiOperation("鏌ヨ鐤剧梾鍒楄〃鏁版嵁閲囬泦")
+    public AjaxResult selectIcd10List(@RequestBody Icd10 icd10) {
+        Integer integer = ihnGatherPatArchiveService.selectIcd10List(icd10);
+        return AjaxResult.success(integer);
+    }
+
+    /**
+     * 鐢ㄦ埛淇℃伅闆嗗悎淇℃伅鏁版嵁閲囬泦
+     */
+    @PostMapping("/selectUserList")
+    @ApiOperation("鐢ㄦ埛淇℃伅闆嗗悎淇℃伅鏁版嵁閲囬泦")
+    public AjaxResult selectUserList(@RequestBody SysUser sysUser) {
+        Integer integer = ihnGatherPatArchiveService.selectUserList(sysUser);
+        return AjaxResult.success(integer);
+    }
+
+    /**
+     * 閮ㄩ棬淇℃伅闆嗗悎淇℃伅鏁版嵁閲囬泦
+     */
+    @PostMapping("/selectDeptList")
+    @ApiOperation("閮ㄩ棬淇℃伅闆嗗悎淇℃伅鏁版嵁閲囬泦")
+    public AjaxResult selectDeptList(@RequestBody SysDept sysDept) {
+        Integer integer = ihnGatherPatArchiveService.selectDeptList(sysDept);
+        return AjaxResult.success(integer);
+    }
+
 }

--
Gitblit v1.9.3