CollegeFileMapper.java
832 Bytes
package com.subsidy.mapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.subsidy.model.CollegeFileDO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.subsidy.vo.college.CollegeInfoVO;
import com.subsidy.vo.college.FileManagementVO;
import com.subsidy.vo.college.RecentFileVO;
import org.springframework.stereotype.Repository;
import java.util.List;
/**
* <p>
* Mapper 接口
* </p>
*
* @author Tuyp
* @since 2025-01-09
*/
@Repository
public interface CollegeFileMapper extends BaseMapper<CollegeFileDO> {
IPage<FileManagementVO> fileManagement(IPage iPage,Long matchId,String education,String name);
/**
* 某一届赛事某院校情况
*/
CollegeInfoVO collegeInfo(Long collegeId, Long matchId);
RecentFileVO recentFile(Long collegeId, Long matchId);
}