注释无用代码
This commit is contained in:
@@ -19,12 +19,12 @@ import java.util.List;
|
|||||||
@Mapper
|
@Mapper
|
||||||
public interface BookDao extends MPJBaseMapper<BookEntity> {
|
public interface BookDao extends MPJBaseMapper<BookEntity> {
|
||||||
|
|
||||||
List<BookEntity> queryBookInOther(String publisherName,String authorName);
|
// List<BookEntity> queryBookInOther(String publisherName,String authorName);
|
||||||
|
|
||||||
|
|
||||||
@Select("select t.* from book t left join user_ebook_buy t1 on t.id = t1.book_id ${ew.customSqlSegment} limit #{start},#{limit}")
|
// @Select("select t.* from book t left join user_ebook_buy t1 on t.id = t1.book_id ${ew.customSqlSegment} limit #{start},#{limit}")
|
||||||
List<BookEntity> queryUserListenBooksNobuy(@Param("ew") QueryWrapper<BookEntity> wrapper,@Param("start") int start,@Param("limit") int limit);
|
// List<BookEntity> queryUserListenBooksNobuy(@Param("ew") QueryWrapper<BookEntity> wrapper,@Param("start") int start,@Param("limit") int limit);
|
||||||
|
//
|
||||||
@Select("select count(*) as sum from book t left join user_ebook_buy t1 on t.id = t1.book_id ${ew.customSqlSegment}")
|
// @Select("select count(*) as sum from book t left join user_ebook_buy t1 on t.id = t1.book_id ${ew.customSqlSegment}")
|
||||||
Integer queryUserListenBooksNobuyCount(@Param("ew") QueryWrapper<BookEntity> wrapper);
|
// Integer queryUserListenBooksNobuyCount(@Param("ew") QueryWrapper<BookEntity> wrapper);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user