From a389acecd582e81c34037326d5808152f97efffb Mon Sep 17 00:00:00 2001 From: sinake <sinake1@qq.com> Date: 星期三, 03 九月 2025 09:12:58 +0800 Subject: [PATCH] 接口题目层增加answerps字段门诊记录接口新加否已随访的标记 --- 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