mirror of
https://github.com/201206030/novel-plus.git
synced 2025-07-14 21:26:41 +00:00
17 lines
429 B
Java
17 lines
429 B
Java
package com.java2nb.novel.mapper;
|
|
|
|
import com.java2nb.novel.vo.BookCommentReplyVO;
|
|
import com.java2nb.novel.vo.BookCommentVO;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author Administrator
|
|
*/
|
|
public interface FrontBookCommentReplyMapper extends BookCommentReplyMapper {
|
|
|
|
List<BookCommentReplyVO> listCommentReplyByPage(@Param("userId") Long userId, @Param("commentId") Long commentId);
|
|
|
|
}
|