xiaoyong931011
2021-03-04 d7a26f3570e65d4364b30b4650f01618f2c33cc6
src/main/java/com/xcong/excoin/modules/documentary/dao/FollowFollowerNoticeDao.java
@@ -1,10 +1,18 @@
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<FollowFollowerNoticeEntity> {
   IPage<FollowFollowerNoticeEntity> selectFollowFollowerNoticePage(Page<FollowFollowerNoticeEntity> page,
         @Param("record")FollowFollowerNoticeEntity followFollowerNoticeEntity);
}