clock打卡前端

This commit is contained in:
wangjinlei
2023-10-10 15:21:12 +08:00
parent 9d700af56e
commit e682d9934e
5 changed files with 83 additions and 6 deletions

View File

@@ -2,8 +2,10 @@ package com.peanut.modules.book.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.peanut.common.utils.PageUtils;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.peanut.modules.book.entity.BookEntity;
import java.util.List;
import java.util.Map;
/**
@@ -37,5 +39,12 @@ public interface BookService extends IService<BookEntity> {
PageUtils queryPagebooks(Map<String, Object> params);
Page<BookEntity> getUserClockBooks(Integer userId, Integer limit, Integer page);
Page<BookEntity> getUserClockBestBooks(Integer userId, Integer limit, Integer page);
}