mirror of
https://github.com/201206030/novel-plus.git
synced 2025-06-24 04:46:37 +00:00
16 lines
321 B
Java
16 lines
321 B
Java
package com.java2nb.novel.mapper;
|
|
|
|
import com.java2nb.novel.vo.BookShelfVO;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author Administrator
|
|
*/
|
|
public interface FrontUserBookshelfMapper extends UserBookshelfMapper {
|
|
|
|
List<BookShelfVO> listBookShelf(@Param("userId") Long userId);
|
|
|
|
}
|