| | |
| | | |
| | | import com.whyc.pojo.FileInfo; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface FileInfoMapper extends CustomMapper<FileInfo>{ |
| | | |
| | | //查询出最大文件id |
| | | int selectMaxId(); |
| | | |
| | | //查出文件对应的文件id |
| | | int selectFileId(int stationId, String filePath); |
| | | Integer selectFileId(int stationId, String filePath); |
| | | |
| | | //删除机房下文件信息(stationId,fileId) |
| | | int deleteFileInStation(int stationId, int fileId); |
| | | |
| | | //查询出机房下所有的文件fileIds |
| | | List<Integer> selectListFiles(int stationId); |
| | | |
| | | //对比时下拉选择站点下挂在的文件信息 |
| | | List<FileInfo> selectFileInStation(); |
| | | |
| | | //查询基站下所有的文件id |
| | | List<String> selectFileIds(int stationId); |
| | | } |