From 314ccc3fbb5b4cb1be4a77bc107a0ca1a2b2f0a3 Mon Sep 17 00:00:00 2001 From: Crunchy <3114200645@qq.com> Date: 星期六, 15 三月 2025 10:37:31 +0800 Subject: [PATCH] 浪潮单点登录,注册,心跳 --- performance-server/src/main/java/com/ruoyi/performance/mapper/PerformanceShiftMapper.java | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/performance-server/src/main/java/com/ruoyi/performance/mapper/PerformanceShiftMapper.java b/performance-server/src/main/java/com/ruoyi/performance/mapper/PerformanceShiftMapper.java index 091ad29..b339b4f 100644 --- a/performance-server/src/main/java/com/ruoyi/performance/mapper/PerformanceShiftMapper.java +++ b/performance-server/src/main/java/com/ruoyi/performance/mapper/PerformanceShiftMapper.java @@ -5,7 +5,7 @@ import com.ruoyi.framework.mybatis_config.MyBaseMapper; import com.ruoyi.performance.dto.PerformanceShiftMapDto; import com.ruoyi.performance.pojo.PerformanceShift; -import org.springframework.data.repository.query.Param; +import org.apache.ibatis.annotations.Param; import java.util.List; import java.util.Map; @@ -31,11 +31,11 @@ @Param("userName") String userName, @Param("laboratory") String laboratory); - IPage<Map<String, Object>> performanceShiftYear(Page<Object> page, String time, String userName, String laboratory); + IPage<Map<String, Object>> performanceShiftYear(@Param("page") Page<Object> page, @Param("time") String time, @Param("userName") String userName, @Param("laboratory") String laboratory); - List<Map<String, Object>> performanceShiftYearList(String time, String userName, String laboratory); + List<Map<String, Object>> performanceShiftYearList(@Param("time") String time, @Param("userName") String userName, @Param("laboratory") String laboratory); - List<PerformanceShiftMapDto> performanceShiftList(String time, String userName, String laboratory); + List<PerformanceShiftMapDto> performanceShiftList(@Param("time") String time, @Param("userName") String userName, @Param("laboratory") String laboratory); - String seldepLimsId(int depLimsId); + String seldepLimsId(@Param("depLimsId") int depLimsId); } -- Gitblit v1.9.3