Commit 62e2c712734a8b803e7249a1a529052cdec96a3a
1 parent
ed08b01d
档案借阅
Showing
3 changed files
with
3 additions
and
5 deletions
ruoyi-archives/src/main/java/com/ruoyi/mapper/ArchivesBorrowMapper.java
| 1 | 1 | package com.ruoyi.mapper; |
| 2 | 2 | |
| 3 | 3 | import com.ruoyi.domain.ArchivesBorrow; |
| 4 | -import com.ruoyi.domain.ArchivesBox; | |
| 5 | 4 | import java.util.List; |
| 6 | 5 | |
| 7 | 6 | /** |
| ... | ... | @@ -19,6 +18,6 @@ public interface ArchivesBorrowMapper |
| 19 | 18 | * @param archivesBox 【请填写功能名称】 |
| 20 | 19 | * @return 【请填写功能名称】集合 |
| 21 | 20 | */ |
| 22 | - List<ArchivesBox> selectArchivesBorrowList(ArchivesBorrow archivesBox); | |
| 21 | + List<ArchivesBorrow> selectArchivesBorrowList(ArchivesBorrow archivesBox); | |
| 23 | 22 | |
| 24 | 23 | } | ... | ... |
ruoyi-archives/src/main/java/com/ruoyi/service/IArchivesBorrowService.java
| 1 | 1 | package com.ruoyi.service; |
| 2 | 2 | |
| 3 | 3 | import com.ruoyi.domain.ArchivesBorrow; |
| 4 | -import com.ruoyi.domain.ArchivesBox; | |
| 5 | 4 | import java.util.List; |
| 6 | 5 | |
| 7 | 6 | /** |
| ... | ... | @@ -20,6 +19,6 @@ public interface IArchivesBorrowService |
| 20 | 19 | * @param archivesBorrow 【请填写功能名称】 |
| 21 | 20 | * @return 【请填写功能名称】集合 |
| 22 | 21 | */ |
| 23 | - List<ArchivesBox> selectArchivesBorrowList(ArchivesBorrow archivesBorrow); | |
| 22 | + List<ArchivesBorrow> selectArchivesBorrowList(ArchivesBorrow archivesBorrow); | |
| 24 | 23 | |
| 25 | 24 | } | ... | ... |
ruoyi-archives/src/main/java/com/ruoyi/service/impl/ArchivesBorrowServiceImpl.java
| ... | ... | @@ -28,7 +28,7 @@ public class ArchivesBorrowServiceImpl implements IArchivesBorrowService |
| 28 | 28 | * @return 【请填写功能名称】 |
| 29 | 29 | */ |
| 30 | 30 | @Override |
| 31 | - public List<ArchivesBox> selectArchivesBorrowList(ArchivesBorrow archivesBorrow) | |
| 31 | + public List<ArchivesBorrow> selectArchivesBorrowList(ArchivesBorrow archivesBorrow) | |
| 32 | 32 | { |
| 33 | 33 | return archivesBorrowMapper.selectArchivesBorrowList(archivesBorrow); |
| 34 | 34 | } | ... | ... |