package com.java2nb.novel.mapper; import com.java2nb.novel.vo.BookCommentVO; import org.apache.ibatis.annotations.Param; import java.util.List; /** * @author Administrator */ public interface FrontBookCommentMapper extends BookCommentMapper { List listCommentByPage(@Param("userId") Long userId, @Param("bookId") Long bookId); void addReplyCount(@Param("commentId") Long commentId); }