| | |
| | | import lombok.AllArgsConstructor; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | |
| | | @AllArgsConstructor |
| | | @Service |
| | | public class DocumentationFileServiceImpl extends ServiceImpl<DocumentationFileMapper, DocumentationFile> implements DocumentationFileService { |
| | |
| | | |
| | | |
| | | @Override |
| | | public IPage<DocumentationFile> documentationFileListPage(Page page, DocumentationFile documentationFile) { |
| | | return documentationFileMapper.documentationFileListPage(page,documentationFile); |
| | | public List<DocumentationFile> documentationFileListPage(DocumentationFile documentationFile) { |
| | | return documentationFileMapper.documentationFileListPage(documentationFile); |
| | | } |
| | | } |