mirror of
https://github.com/201206030/novel-plus.git
synced 2026-03-07 16:59:36 +08:00
17 lines
415 B
Java
17 lines
415 B
Java
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<BookCommentVO> listCommentByPage(@Param("userId") Long userId, @Param("bookId") Long bookId);
|
|
|
|
void addReplyCount(@Param("commentId") Long commentId);
|
|
}
|