From 3647aa5008055528f075ee73002542a1399575ae Mon Sep 17 00:00:00 2001 From: zouyu <2723363702@qq.com> Date: 星期三, 19 三月 2025 14:45:39 +0800 Subject: [PATCH] 单点登录调整 --- notice-server/src/main/java/com/ruoyi/notice/mapper/InformationNotificationMapper.java | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/notice-server/src/main/java/com/ruoyi/notice/mapper/InformationNotificationMapper.java b/notice-server/src/main/java/com/ruoyi/notice/mapper/InformationNotificationMapper.java index 50525b8..6ce4c80 100644 --- a/notice-server/src/main/java/com/ruoyi/notice/mapper/InformationNotificationMapper.java +++ b/notice-server/src/main/java/com/ruoyi/notice/mapper/InformationNotificationMapper.java @@ -6,6 +6,7 @@ import com.ruoyi.notice.dto.InformationNotificationDto; import com.ruoyi.notice.pojo.InformationNotification; import org.apache.ibatis.annotations.Mapper; +import org.apache.ibatis.annotations.Param; /** * <p> @@ -18,5 +19,5 @@ @Mapper public interface InformationNotificationMapper extends BaseMapper<InformationNotification> { - IPage<InformationNotificationDto> getPage(Page page, String messageType, Integer userId); + IPage<InformationNotificationDto> getPage(Page page, @Param("messageType") String messageType, @Param("userId")Integer userId); } -- Gitblit v1.9.3