From 8f63d5ce747106195b279e1c158fd12f9997a770 Mon Sep 17 00:00:00 2001 From: zouyu <2723363702@qq.com> Date: 星期二, 18 三月 2025 19:08:40 +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