|
|
@@ -6,6 +6,7 @@ import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import com.kxs.system.api.model.KxsUserMsg;
|
|
|
import com.kxs.system.api.vo.kxsapp.userMsg.UserMsgPageVO;
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
/**
|
|
|
* 系统用户消息推送表(KxsUserMsg)表数据库访问层
|
|
|
@@ -16,6 +17,6 @@ import org.apache.ibatis.annotations.Mapper;
|
|
|
@Mapper
|
|
|
public interface KxsUserMsgMapper extends BaseMapper<KxsUserMsg> {
|
|
|
|
|
|
- IPage<UserMsgPageVO> getByPage(Page<UserMsgPageVO> page);
|
|
|
+ IPage<UserMsgPageVO> getByPage(Page<UserMsgPageVO> page, @Param("userId") Long userId);
|
|
|
}
|
|
|
|