From e6456d2196b3e57bd06be0fbc74dd3e0fc28fdeb Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期二, 22 七月 2025 19:17:55 +0800
Subject: [PATCH] 代码提交

---
 ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/HNGatherPatArchiveController.java |   56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 56 insertions(+), 0 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
new file mode 100644
index 0000000..6b3a9ed
--- /dev/null
+++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/HNGatherPatArchiveController.java
@@ -0,0 +1,56 @@
+package com.ruoyi.web.controller.smartor;
+
+import com.ruoyi.common.annotation.Log;
+import com.ruoyi.common.core.controller.BaseController;
+import com.ruoyi.common.core.domain.AjaxResult;
+import com.ruoyi.common.core.domain.entity.SysDept;
+import com.ruoyi.common.core.domain.entity.SysUser;
+import com.ruoyi.common.core.page.TableDataInfo;
+import com.ruoyi.common.enums.BusinessType;
+import com.ruoyi.common.utils.PageUtils;
+import com.ruoyi.common.utils.poi.ExcelUtil;
+import com.smartor.domain.PatMedInhosp;
+import com.smartor.domain.PatMedOuthosp;
+import com.smartor.domain.PatMedReq;
+import com.smartor.domain.PatMedRes;
+import com.smartor.service.IHNGatherPatArchiveService;
+import com.smartor.service.IPatMedOuthospService;
+import com.smartor.service.impl.HNGatherPatArchiveServiceImpl;
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiImplicitParam;
+import io.swagger.annotations.ApiOperation;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.*;
+
+import javax.servlet.http.HttpServletResponse;
+import java.lang.reflect.Array;
+import java.util.List;
+
+/**
+ * 娌冲崡閲囬泦鎮h�呬俊鎭帴鍙ontroller
+ *
+ * @author smartor
+ * @date 2025-07-09
+ */
+@RestController
+@RequestMapping("/smartor/hngather")
+@Api(description = "娌冲崡閲囬泦鎮h�呬俊鎭帴鍙�")
+public class HNGatherPatArchiveController extends BaseController {
+    @Autowired
+    private IHNGatherPatArchiveService ihnGatherPatArchiveService;
+
+    /**
+     * 娌冲崡鏁版嵁閲囬泦
+     */
+    //@PreAuthorize("@ss.hasPermi('smartor:patouthosp:list')")
+    @PostMapping("/selectGatherList")
+    @ApiOperation("娌冲崡鏁版嵁閲囬泦")
+    public Integer selectUserList(@RequestBody SysUser sysUser) {
+//        Integer integer = ihnGatherPatArchiveService.selectUserList(null);
+//        Integer deptInt = ihnGatherPatArchiveService.selectDeptList(null);
+//        Integer icdInt = ihnGatherPatArchiveService.selectIcd10List(null);
+        Integer integer = ihnGatherPatArchiveService.selectPatMedInhospList(new PatMedInhosp());
+        return integer;
+    }
+
+}

--
Gitblit v1.9.3