From 25a0ba7b2706db3c5ee546da3e0e7c909777b890 Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期三, 29 七月 2026 15:37:32 +0800
Subject: [PATCH] 1,患者过滤状态修改(之前只支持发送之前的过滤,现在支持发送之后的过滤,如果任务发送后,外链不能再打开) 2.在出入院表新增入院申请单字段 3.采集入院数据时,同时要采集importanceFlagCode emergencyLevelCode 4.外链的发送,也要查询子任务状态,如果是不执行,也不能再发送
---
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