From 4d537968ac6efb3a5e3d0f8ea5071d5254eb63c3 Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期二, 29 七月 2025 14:37:17 +0800 Subject: [PATCH] 代码提交 --- ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/HNGatherPatArchiveController.java | 24 ++++++++++++------------ 1 files changed, 12 insertions(+), 12 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 6b3a9ed..3be114b 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 @@ -9,10 +9,7 @@ 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.domain.*; import com.smartor.service.IHNGatherPatArchiveService; import com.smartor.service.IPatMedOuthospService; import com.smartor.service.impl.HNGatherPatArchiveServiceImpl; @@ -24,7 +21,13 @@ import javax.servlet.http.HttpServletResponse; import java.lang.reflect.Array; +import java.time.LocalDate; +import java.time.LocalDateTime; +import java.time.ZoneId; +import java.util.Date; import java.util.List; + +import static com.ruoyi.framework.datasource.DynamicDataSourceContextHolder.log; /** * 娌冲崡閲囬泦鎮h�呬俊鎭帴鍙ontroller @@ -42,15 +45,12 @@ /** * 娌冲崡鏁版嵁閲囬泦 */ - //@PreAuthorize("@ss.hasPermi('smartor:patouthosp:list')") - @PostMapping("/selectGatherList") + @PostMapping("/hnDataGather") @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; + public AjaxResult hnDataGather(@RequestBody HnDataGatherVO hnDataGatherVO) { + log.info("寮�濮嬫寜澶╁悓姝ョ敤鎴锋暟鎹紝鏃堕棿鑼冨洿: {} 鍒� {}", hnDataGatherVO.getStartOutHospTime(), hnDataGatherVO.getEndOutHospTime()); + Boolean aBoolean = ihnGatherPatArchiveService.hnDataGather(hnDataGatherVO); + return AjaxResult.success(aBoolean); } } -- Gitblit v1.9.3