12345678910111213141516171819 |
- package com.wtkj.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.baomidou.mybatisplus.core.metadata.IPage;
- import com.wtkj.entity.FileAndFolderHistory;
- import java.util.List;
- /**
- * @author Blizzard
- * @create at 2023-09-14 16:12
- * @describe
- */
- public interface FileAndFolderHistoryMapper extends BaseMapper<FileAndFolderHistory> {
- List<FileAndFolderHistory> selectByLatestId(Long bladeFileId);
- List<FileAndFolderHistory> getPage(Long fileId, IPage<FileAndFolderHistory> page);
- }
|