package com.subsidy.mapper; import com.subsidy.model.CollegesDictDO; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.subsidy.model.ProjectDO; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.List; /** * <p> * 院校字典表 Mapper 接口 * </p> * * @author Tuyp * @since 2025-01-08 */ @Repository public interface CollegesDictMapper extends BaseMapper<CollegesDictDO> { List<ProjectDO> getPreliminaryProjectList(Long matchId, String projectSchedule,Long collegeId); }