From cac8d292911a995ac388160704ca8713ea76cd55 Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期四, 28 八月 2025 14:33:25 +0800 Subject: [PATCH] 河南数据采集代码提交 --- ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/HNGatherPatArchiveController.java | 32 +++++++++++++++++++++++++++++++- 1 files changed, 31 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..0ae17bd 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 @@ -48,9 +48,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