package com.xcong.excoin.modules.documentary.dao; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.xcong.excoin.modules.documentary.entity.FollowFollowerNoticeEntity; import org.apache.ibatis.annotations.Param; /** * @author helius */ public interface FollowFollowerNoticeDao extends BaseMapper { IPage selectFollowFollowerNoticePage(Page page, @Param("record")FollowFollowerNoticeEntity followFollowerNoticeEntity); }