上传代码

This commit is contained in:
xxy
2020-05-02 15:05:21 +08:00
parent c8c80fa719
commit ed34c67d08
733 changed files with 61899 additions and 0 deletions

View File

@ -0,0 +1,15 @@
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);
}